4 #include <OpenMesh/Core/Utils/Property.hh>
5 #include "int2roman.hh"
8 template <
typename Mesh>
12 static float a[9] = { 1.1f, 2.2f, 3.3f, 4.4f, 5.5f, 6.6f, 7.7f, 8.8f, 9.9f };
14 for(
typename Mesh::VertexIter it=_m.vertices_begin();
15 it != _m.vertices_end(); ++it)
17 const float v = a[it->idx()%9];
18 if ( _check && !(_m.property( _ph, *it ) == v) )
21 _m.property( _ph, *it ) = v;
27 template <
typename Mesh>
32 for(
typename Mesh::EdgeIter it=_m.edges_begin();
33 it != _m.edges_end(); ++it)
35 const size_t n = it->idx();
36 const bool v = ((n&(n-1))==0);
38 if (_check && _m.property( _ph, *it ) != v)
40 std::cout <<
" eprop_bool: " << n <<
" -> "
41 << _m.property(_ph, *it ) <<
" != " << v << std::endl;
46 _m.property( _ph, *it ) = v;
47 std::cout <<
" eprop_bool: " << n <<
" -> " << v << std::endl;
55 template <
typename Mesh>
60 for(
typename Mesh::FaceIter it=_m.faces_begin();
61 it != _m.faces_end(); ++it)
63 const int n = (it->idx()) + 1;
64 _m.property( _ph, *it ) = int2roman(n);
70 template <
typename Mesh,
typename T>
75 static float a[9] = { 1.1f, 2.2f, 3.3f, 4.4f, 5.5f, 6.6f, 7.7f, 8.8f, 9.9f };
76 static float b[9] = { 2.2f, 3.3f, 4.4f, 5.5f, 6.6f, 7.7f, 8.8f, 9.9f, 1.1f };
77 static float c[9] = { 3.3f, 4.4f, 5.5f, 6.6f, 7.7f, 8.8f, 9.9f, 1.1f, 2.2f };
78 static float d[9] = { 4.4f, 5.5f, 6.6f, 7.7f, 8.8f, 9.9f, 1.1f, 2.2f, 3.3f };
79 static double values[9] = { 0.1, 0.02, 0.003, 0.0004, 0.00005, 0.000006,
80 0.0000007, 0.00000008, 0.000000009 };
82 for(
typename Mesh::HalfedgeIter it=_m.halfedges_begin();
83 it != _m.halfedges_end(); ++it)
85 const int n = it->idx();
90 v.vec4fval[0] = a[n%9];
91 v.vec4fval[1] = b[n%9];
92 v.vec4fval[2] = c[n%9];
93 v.vec4fval[3] = d[n%9];
95 if ( _check && _m.property( _ph, *it ) != v )
98 _m.property( _ph, *it ) = v;
103 template <
typename Mesh,
typename T>
107 for(
typename Mesh::FaceIter it=_m.faces_begin(); it != _m.faces_end(); ++it)
109 const size_t idx = it->idx();
110 if ( _check && _m.property( _ph )[int2roman(idx+1)] != idx )
113 _m.property( _ph )[int2roman(idx+1)] = idx;
Handle representing an edge property.
Definition: Property.hh:515
Handle representing a mesh property.
Definition: Property.hh:543
Handle representing a halfedge property.
Definition: Property.hh:501
Handle representing a face property.
Definition: Property.hh:529