Browse Source

Fixed typo in documentation.

vectorfields
Vladimír Vondruš 14 years ago
parent
commit
e9164d856e
  1. 4
      src/MeshTools/CombineIndexedArrays.h

4
src/MeshTools/CombineIndexedArrays.h

@ -113,8 +113,8 @@ std::vector<Vector2> textureCoordinates;
std::vector<unsigned int> indices = MeshTools::combineIndexedArrays( std::vector<unsigned int> indices = MeshTools::combineIndexedArrays(
std::make_tuple(std::cref(vertexIndices), std::ref(vertices)), std::make_tuple(std::cref(vertexIndices), std::ref(vertices)),
std::make_tuple(std::cref(normaTextureIndices), std::ref(normals)), std::make_tuple(std::cref(normalTextureIndices), std::ref(normals)),
std::make_tuple(std::cref(normaTextureIndices), std::ref(textureCoordinates)) std::make_tuple(std::cref(normalTextureIndices), std::ref(textureCoordinates))
); );
@endcode @endcode
`vertices`, `normals` and `textureCoordinates` will then contain combined `vertices`, `normals` and `textureCoordinates` will then contain combined

Loading…
Cancel
Save