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)
44 _m.property( _ph, *it ) = v;
52 template <
typename Mesh>
57 for(
typename Mesh::FaceIter it=_m.faces_begin();
58 it != _m.faces_end(); ++it)
60 const int n = (it->idx()) + 1;
61 _m.property( _ph, *it ) = int2roman(n);
67 template <
typename Mesh,
typename T>
72 static float a[9] = { 1.1f, 2.2f, 3.3f, 4.4f, 5.5f, 6.6f, 7.7f, 8.8f, 9.9f };
73 static float b[9] = { 2.2f, 3.3f, 4.4f, 5.5f, 6.6f, 7.7f, 8.8f, 9.9f, 1.1f };
74 static float c[9] = { 3.3f, 4.4f, 5.5f, 6.6f, 7.7f, 8.8f, 9.9f, 1.1f, 2.2f };
75 static float d[9] = { 4.4f, 5.5f, 6.6f, 7.7f, 8.8f, 9.9f, 1.1f, 2.2f, 3.3f };
77 for(
typename Mesh::HalfedgeIter it=_m.halfedges_begin();
78 it != _m.halfedges_end(); ++it)
80 const int n = it->idx();
83 v.vec4fval[0] = a[n%9];
84 v.vec4fval[1] = b[n%9];
85 v.vec4fval[2] = c[n%9];
86 v.vec4fval[3] = d[n%9];
88 if ( _check && _m.property( _ph, *it ) != v )
91 _m.property( _ph, *it ) = v;
96 template <
typename Mesh,
typename T>
100 for(
typename Mesh::FaceIter it=_m.faces_begin(); it != _m.faces_end(); ++it)
102 const size_t idx = it->idx();
103 if ( _check && _m.property( _ph )[int2roman(idx+1)] != idx )
106 _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