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:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user