OpenMesh
|
This examples shows:
In the last example we computed the barycenter of each vertex' neighborhood and stored it in an array. It would be more convenient and less error-prone if we could store this data in the mesh and let OpenMesh manage the data. It would be even more helpful if we could attach such properties dynamically to the mesh.
Custom properties can be conveniently created and attached to meshes with the following functions:
All three functions take two template arguments:
int
, double
, etc.).All three functions return a handle object (of type OpenMesh::PropertyManager) that manages the lifetime of the property and provides read / write access to its values.
In this example, we will store the cog
value (see previous example) in a vertex property instead of keeping it in a separate array. To do so, we first add a (temporary) property of the desired element type (OpenMesh::VertexHandle) and value type (MyMesh::Point
) to the mesh:
Enough memory is allocated to hold as many values of MyMesh::Point
as there are vertices. All insert and delete operations on the mesh are synchronized with the attached properties.
Once the property is created, we can use it to compute the centers of the neighborhood of each vertex:
Finally, we set the new position for each vertex:
Since we chose to use makeTemporaryProperty(), the created property is automatically removed from the mesh as soon as we leave the scope of the associated handle variable cog
.
If, instead, a property is desired to survive its local scope, it should be created with using getOrMakeProperty(). In that case, the property must be given a name that can later be used to retrieve the property. For example:
At a later time, we can use the getProperty() function to obtain a handle to a property that was previously created by refering to its name:
The functions makeTemporaryProperty(), getOrMakeProperty(), and getProperty() are the convenient high-level interface for creating and accessing mesh properties.
Beneath these convenience functions, there is also a low-level property interface where handle and property lifetime must be managed manually. This interface is accessed through a mesh's add_property(), remove_property(), and property() functions and several property handle classes (OpenMesh::VPropHandleT, OpenMesh::HPropHandleT, OpenMesh::EPropHandleT, OpenMesh::FPropHandleT, OpenMesh::MPropHandleT).
Below is the complete source code: