1 #ifndef INCLUDE_UNITTESTS_DECIMATER_HH
2 #define INCLUDE_UNITTESTS_DECIMATER_HH
4 #include <gtest/gtest.h>
5 #include <Unittests/unittests_common.hh>
12 virtual void SetUp() {
18 virtual void TearDown() {
40 Mesh::VertexHandle vhandle[4];
42 vhandle[0] = mesh_.add_vertex(Mesh::Point(0, 0, 0));
43 vhandle[1] = mesh_.add_vertex(Mesh::Point(0, 1, 0));
44 vhandle[2] = mesh_.add_vertex(Mesh::Point(1, 1, 0));
45 vhandle[3] = mesh_.add_vertex(Mesh::Point(1, 0, 0));
48 std::vector<Mesh::VertexHandle> face_vhandles;
50 face_vhandles.push_back(vhandle[2]);
51 face_vhandles.push_back(vhandle[1]);
52 face_vhandles.push_back(vhandle[0]);
53 mesh_.add_face(face_vhandles);
55 face_vhandles.clear();
57 face_vhandles.push_back(vhandle[2]);
58 face_vhandles.push_back(vhandle[0]);
59 face_vhandles.push_back(vhandle[3]);
60 mesh_.add_face(face_vhandles);
70 EXPECT_EQ(4, mesh_.n_vertices() ) <<
"Wrong number of vertices";
71 EXPECT_EQ(2, mesh_.n_faces() ) <<
"Wrong number of faces";
76 EXPECT_FALSE( mesh_.get_property_handle(doubleHandle,
"doubleProp") );
78 mesh_.add_property(doubleHandle,
"doubleProp");
80 EXPECT_TRUE(mesh_.get_property_handle(doubleHandle,
"doubleProp"));
86 for ( Mesh::VertexIter v_it = mesh_.vertices_begin() ; v_it != mesh_.vertices_end(); ++v_it ) {
87 mesh_.property(doubleHandle,v_it) = index;
92 Mesh::VertexIter v_it = mesh_.vertices_begin();
93 EXPECT_EQ( mesh_.property(doubleHandle,v_it) , 0.0 ) <<
"Invalid double value for vertex 0";
96 EXPECT_EQ( mesh_.property(doubleHandle,v_it) , 1.0 ) <<
"Invalid double value for vertex 1";
99 EXPECT_EQ( mesh_.property(doubleHandle,v_it) , 2.0 ) <<
"Invalid double value for vertex 2";
102 EXPECT_EQ( mesh_.property(doubleHandle,v_it) , 3.0 ) <<
"Invalid double value for vertex 3";
105 std::vector<double>::iterator it=mesh_.property(doubleHandle).data_vector().begin();
106 std::vector<double>::iterator end=mesh_.property(doubleHandle).data_vector().end();
108 EXPECT_EQ( *it , 0.0 ) <<
"Invalid double value for vertex 0";
111 EXPECT_EQ( *it , 1.0 ) <<
"Invalid double value for vertex 1";
114 EXPECT_EQ( *it , 2.0 ) <<
"Invalid double value for vertex 2";
117 EXPECT_EQ( *it , 3.0 ) <<
"Invalid double value for vertex 3";
120 EXPECT_EQ( it, end ) <<
"End iterator not mathing!";
131 Mesh::VertexHandle vhandle[4];
133 vhandle[0] = mesh_.add_vertex(Mesh::Point(0, 0, 0));
134 vhandle[1] = mesh_.add_vertex(Mesh::Point(0, 1, 0));
135 vhandle[2] = mesh_.add_vertex(Mesh::Point(1, 1, 0));
136 vhandle[3] = mesh_.add_vertex(Mesh::Point(1, 0, 0));
139 std::vector<Mesh::VertexHandle> face_vhandles;
141 face_vhandles.push_back(vhandle[2]);
142 face_vhandles.push_back(vhandle[1]);
143 face_vhandles.push_back(vhandle[0]);
144 mesh_.add_face(face_vhandles);
146 face_vhandles.clear();
148 face_vhandles.push_back(vhandle[2]);
149 face_vhandles.push_back(vhandle[0]);
150 face_vhandles.push_back(vhandle[3]);
151 mesh_.add_face(face_vhandles);
161 EXPECT_EQ(4, mesh_.n_vertices() ) <<
"Wrong number of vertices";
162 EXPECT_EQ(2, mesh_.n_faces() ) <<
"Wrong number of faces";
167 EXPECT_FALSE( mesh_.get_property_handle(boolHandle,
"boolProp") );
169 mesh_.add_property(boolHandle,
"boolProp");
171 EXPECT_TRUE(mesh_.get_property_handle(boolHandle,
"boolProp"));
176 for ( Mesh::VertexIter v_it = mesh_.vertices_begin() ; v_it != mesh_.vertices_end(); ++v_it ) {
177 mesh_.property(boolHandle,v_it) = current;
182 Mesh::VertexIter v_it = mesh_.vertices_begin();
183 EXPECT_TRUE( mesh_.property(boolHandle,v_it) ) <<
"Invalid bool value for vertex 0";
186 EXPECT_FALSE( mesh_.property(boolHandle,v_it) ) <<
"Invalid bool value for vertex 1";
189 EXPECT_TRUE( mesh_.property(boolHandle,v_it) ) <<
"Invalid bool value for vertex 2";
192 EXPECT_FALSE( mesh_.property(boolHandle,v_it) ) <<
"Invalid bool value for vertex 3";
195 std::vector<bool>::iterator it=mesh_.property(boolHandle).data_vector().begin();
196 std::vector<bool>::iterator end=mesh_.property(boolHandle).data_vector().end();
198 EXPECT_TRUE( *it ) <<
"Invalid bool value for vertex 0";
201 EXPECT_FALSE( *it ) <<
"Invalid bool value for vertex 1";
204 EXPECT_TRUE( *it ) <<
"Invalid bool value for vertex 2";
207 EXPECT_FALSE( *it ) <<
"Invalid bool value for vertex 3";
210 EXPECT_EQ( it, end ) <<
"End iterator not mathing!";
214 #endif // INCLUDE GUARD