From e9164d856e119f5aa842e62cb8dde63dda938b72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 20 May 2012 19:03:09 +0200 Subject: [PATCH] Fixed typo in documentation. --- src/MeshTools/CombineIndexedArrays.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MeshTools/CombineIndexedArrays.h b/src/MeshTools/CombineIndexedArrays.h index 967840fde..04fdce252 100644 --- a/src/MeshTools/CombineIndexedArrays.h +++ b/src/MeshTools/CombineIndexedArrays.h @@ -113,8 +113,8 @@ std::vector textureCoordinates; std::vector indices = MeshTools::combineIndexedArrays( std::make_tuple(std::cref(vertexIndices), std::ref(vertices)), - std::make_tuple(std::cref(normaTextureIndices), std::ref(normals)), - std::make_tuple(std::cref(normaTextureIndices), std::ref(textureCoordinates)) + std::make_tuple(std::cref(normalTextureIndices), std::ref(normals)), + std::make_tuple(std::cref(normalTextureIndices), std::ref(textureCoordinates)) ); @endcode `vertices`, `normals` and `textureCoordinates` will then contain combined