Fixed wrong type in unit test

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@638 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2012-08-01 07:08:55 +00:00
parent e6f7c1f87b
commit bbd81b0211

View File

@@ -265,10 +265,10 @@ TEST_F(OpenMeshAddFacePolyMesh, AddQuadToPolymesh) {
// Add some vertices // Add some vertices
Mesh::VertexHandle vhandle[4]; Mesh::VertexHandle vhandle[4];
vhandle[0] = mesh_.add_vertex(Mesh::Point(0, 0, 0)); vhandle[0] = mesh_.add_vertex(PolyMesh::Point(0, 0, 0));
vhandle[1] = mesh_.add_vertex(Mesh::Point(0, 1, 0)); vhandle[1] = mesh_.add_vertex(PolyMesh::Point(0, 1, 0));
vhandle[2] = mesh_.add_vertex(Mesh::Point(1, 1, 0)); vhandle[2] = mesh_.add_vertex(PolyMesh::Point(1, 1, 0));
vhandle[3] = mesh_.add_vertex(Mesh::Point(1, 0, 0)); vhandle[3] = mesh_.add_vertex(PolyMesh::Point(1, 0, 0));
// Add two faces // Add two faces
std::vector<Mesh::VertexHandle> face_vhandles; std::vector<Mesh::VertexHandle> face_vhandles;