58 #error this file is for documentation purposes only 83 template <
class FinalMeshItems>
class KernelT 91 typedef typename FinalMeshItems::Vertex
Vertex;
92 typedef typename FinalMeshItems::Halfedge
Halfedge;
93 typedef typename FinalMeshItems::Edge
Edge;
94 typedef typename FinalMeshItems::Face
Face;
95 typedef typename FinalMeshItems::Point
Point;
96 typedef typename FinalMeshItems::Scalar
Scalar;
99 typedef typename FinalMeshItems::TexCoord
TexCoord;
144 void reserve(
size_t _n_vertices,
469 template <
typename T>
void add_property( [VEHFM]PropHandleT<T>& _ph,
472 const std::string& _name =
"" );
483 template <
typename T>
501 template <
typename T>
503 template <
typename T>
506 template <
typename T>
508 template <
typename T>
511 template <
typename T>
513 template <
typename T>
516 template <
typename T>
518 template <
typename T>
521 template <
typename T>
523 template <
typename T>
This class describes the minimum interface a mesh kernel has to implement (because the resulting mesh...
Definition: MeshKernel.hh:83
bool has_vertex_texcoords1D() const
Is property available?
bool vertices_empty() const
Is the vertex container empty?
KernelT & operator=(const KernelT &_rhs)
Assignment operator.
Handle representing an edge property.
Definition: Property.hh:515
const Face & face(FaceHandle _h) const
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:158
FinalMeshItems::Face Face
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:94
void request_halfedge_texcoords3D()
Request property.
void reserve(size_t _n_vertices, size_t _n_edges, size_t _n_faces)
Reserve memory for vertices, edges, faces.
VertexHandle new_vertex()
Add a new (default) vertex.
Handle for a edge entity.
Definition: Handles.hh:139
void set_next_halfedge_handle(HalfedgeHandle _heh, HalfedgeHandle _nheh)
Set the next halfedge handle.
FaceHandle new_face()
Adding a new face.
void request_face_status()
Request property.
Vertex & vertex(VertexHandle _h)
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:153
Default property class for any type T.
Definition: Property.hh:94
void set_halfedge_handle(VertexHandle _vh, HalfedgeHandle _heh)
Set the outgoing halfedge handle of a given vertex.
bool has_halfedge_normals() const
Is property available?
bool get_property_handle([VEHFM]PropHandleT< T > &ph, const std::string &_n) const
Get property handle by name.
void release_vertex_texcoords1D()
Remove property.
KernelEdgeIter edges_end()
Kernel item iterator.
KernelEdgeIter edges_begin()
Kernel item iterator.
void release_vertex_texcoords2D()
Remove property.
void request_edge_status()
Request property.
bool has_vertex_texcoords2D() const
Is property available?
void release_face_colors()
Remove property.
SomeIterator KernelFaceIter
This type depends on the container type in use.
Definition: MeshKernel.hh:115
void request_face_texture_index()
Request property.
void set_face_handle(HalfedgeHandle _heh, FaceHandle _fh)
Set the face the halfedge belongs to.
void set_normal(VertexHandle _vh, const Normal &_n)
Set normal.
bool faces_empty() const
Is the face container empty?
bool has_halfedge_texcoords2D() const
Is property available?
Handle representing a mesh property.
Definition: Property.hh:543
PropertyT< T > & mproperty(MPropHandleT< T > _ph)
Get property.
FinalMeshItems::FaceHandle FaceHandle
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:103
Add 1D texture coordinates (vertices, halfedges)
Definition: Attributes.hh:91
bool has_halfedge_status() const
Is property available?
Face & face(FaceHandle _h)
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:159
bool halfedges_empty() const
Is the halfedge container empty (should be the same as edges_empty()).
KernelFaceIter faces_end()
Kernel item iterator.
void clean()
Delete all items, i.e.
Handle representing a halfedge property.
Definition: Property.hh:501
void request_vertex_colors()
Request property.
void release_edge_colors()
Remove property.
void release_face_status()
Remove property.
void request_face_colors()
Request property.
FinalMeshItems::Normal Normal
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:97
void set_texcoord1D(VertexHandle _vh, const TexCoord1D &_t)
Set texture coordinate.
FinalMeshItems::Scalar Scalar
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:96
bool has_face_status() const
Is property available?
bool has_vertex_normals() const
Is property available?
bool has_face_texture_index() const
Is property available?
HalfedgeHandle halfedge_handle(unsigned int _i) const
Get the i'th item.
Add colors to mesh item (vertices/faces/edges)
Definition: Attributes.hh:88
VertexHandle vertex_handle(unsigned int _i) const
Get the i'th item.
void request_halfedge_texcoords2D()
Request property.
bool has_edge_status() const
Is property available?
HalfedgeHandle ccw_rotated_halfedge_handle(HalfedgeHandle _heh) const
Counter-clockwise rotate the given halfedge around its from vertex.
bool has_face_normals() const
Is property available?
Contains all the mesh ingredients like the polygonal mesh, the triangle mesh, different mesh kernels ...
Definition: MeshItems.hh:64
void release_halfedge_texcoords3D()
Remove property.
size_t n_faces() const
Returns number of faces.
void release_halfedge_texcoords2D()
Remove property.
EdgeHandle edge_handle(unsigned int _i) const
Get the i'th item.
const TexCoord3D & texcoord3D(VertexHandle _vh) const
Get texture coordinate.
VertexHandle to_vertex_handle(HalfedgeHandle _heh) const
Get the vertex the halfedge points to.
Handle for a halfedge entity.
Definition: Handles.hh:132
Halfedge & halfedge(HalfedgeHandle _h)
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:155
SomeIterator KernelConstEdgeIter
This type depends on the container type in use.
Definition: MeshKernel.hh:114
FaceHandle face_handle(unsigned int _i) const
Get the i'th item.
void set_color(VertexHandle _vh, const Color &_c)
Set color.
bool edges_empty() const
Is the edge container empty?
FinalMeshItems::EdgeHandle EdgeHandle
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:102
HalfedgeHandle new_edge(VertexHandle _start_vertex_handle, VertexHandle _end_vertex_handle)
Add a new edge from _start_vertex_handle to _end_vertex_handle.
SomeIterator KernelConstVertexIter
This type depends on the container type in use.
Definition: MeshKernel.hh:112
FinalMeshItems::Vertex Vertex
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:91
HalfedgeHandle cw_rotated_halfedge_handle(HalfedgeHandle _heh) const
Clockwise rotate the given halfedge around its from vertex.
bool has_halfedge_texcoords1D() const
Is property available?
Handle for a face entity.
Definition: Handles.hh:146
KernelT()
Default constructor.
Definition: MeshKernel.hh:122
void request_halfedge_texcoords1D()
Request property.
bool has_face_colors() const
Is property available?
void release_vertex_colors()
Remove property.
void request_edge_colors()
Request property.
HalfedgeHandle opposite_halfedge_handle(HalfedgeHandle _heh) const
Get the opposite halfedge.
bool has_edge_colors() const
Is property available?
Edge & edge(EdgeHandle _h)
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:157
SomeIterator KernelConstFaceIter
This type depends on the container type in use.
Definition: MeshKernel.hh:116
Add 2D texture coordinates (vertices, halfedges)
Definition: Attributes.hh:92
const Vertex & vertex(VertexHandle _h) const
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:152
void garbage_collection()
Remove all items that are marked as deleted from the corresponding containers.
FinalMeshItems::Color Color
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:98
void release_halfedge_colors()
Remove property.
FinalMeshItems::VertexHandle VertexHandle
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:100
void release_halfedge_normals()
Remove property.
const Point & point(VertexHandle _vh) const
Get the coordinate of a vertex.
HalfedgeHandle prev_halfedge_handle(HalfedgeHandle _heh) const
Get the previous halfedge of the given halfedge.
FinalMeshItems::HalfedgeHandle HalfedgeHandle
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:101
FinalMeshItems::Point Point
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:95
bool has_halfedge_texcoords3D() const
Is property available?
void request_vertex_texcoords2D()
Request property.
void release_halfedge_status()
Remove property.
KernelVertexIter vertices_begin()
Kernel item iterator.
bool has_halfedge_colors() const
Is property available?
void release_face_normals()
Remove property.
void request_halfedge_colors()
Request property.
bool has_vertex_colors() const
Is property available?
const Edge & edge(EdgeHandle _h) const
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:156
void release_face_texture_index()
Remove property.
KernelFaceIter faces_begin()
Kernel item iterator.
void request_vertex_status()
Request property.
void request_vertex_texcoords1D()
Request property.
void request_vertex_normals()
Request property.
Handle representing a face property.
Definition: Property.hh:529
bool has_vertex_status() const
Is property available?
void remove_last_edge()
Remove the last edge imidiately, i.e.
Definition: MeshKernel.hh:213
SomeIterator KernelVertexIter
This type depends on the container type in use.
Definition: MeshKernel.hh:111
Handle representing a vertex property.
Definition: Property.hh:487
void release_edge_status()
Remove property.
void request_vertex_texcoords3D()
Request property.
void remove_last_face()
Remove the last face imidiately, i.e.
Definition: MeshKernel.hh:217
void release_vertex_texcoords3D()
Remove property.
const Normal & normal(VertexHandle _vh) const
Get normal.
void add_property([VEHFM]PropHandleT< T > &_ph, const std::string &_name="")
Add property.
FinalMeshItems::Halfedge Halfedge
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:92
void set_texcoord3D(VertexHandle _vh, const TexCoord3D &_t)
Set texture coordinate.
size_t n_halfedges() const
Returns number of halfedges (should be 2*n_edges())
HalfedgeHandle next_halfedge_handle(HalfedgeHandle _heh) const
Get the next halfedge handle.
void remove_last_vertex()
Remove the last vertex imidiately, i.e.
Definition: MeshKernel.hh:209
Add 3D texture coordinates (vertices, halfedges)
Definition: Attributes.hh:93
size_t n_vertices() const
Returns number of vertices.
PropertyT< T > & property([VEHF]PropHandleT< T > _ph)
Get property.
void clear()
Delete all items, i.e.
const Color & color(VertexHandle _vh) const
Get color.
const Halfedge & halfedge(HalfedgeHandle _h) const
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:154
VertexHandle handle(const Vertex &_v) const
Translate item to handle.
FinalMeshItems::Edge Edge
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:93
const TexCoord1D & texcoord1D(VertexHandle _vh) const
Get texture coordinate.
void set_vertex_handle(HalfedgeHandle _heh, VertexHandle _vh)
Set the to-vertex-handle of the halfedge.
size_t n_edges() const
Returns number of edges.
void release_halfedge_texcoords1D()
Remove property.
void release_vertex_normals()
Remove property.
const TexCoord2D & texcoord2D(VertexHandle _vh) const
Get texture coordinate.
void request_halfedge_status()
Request property.
KernelVertexIter vertices_end()
Kernel item iterator.
VertexHandle from_vertex_handle(HalfedgeHandle _heh) const
Get the vertex the halfedge starts from (implemented as to-handle of the opposite halfedge,...
Handle for a vertex entity.
Definition: Handles.hh:125
void set_texcoord2D(VertexHandle _vh, const TexCoord2D &_t)
Set texture coordinate.
void remove_property([VEHFM]PropHandleT< T > &)
Remove property.
void request_face_normals()
Request property.
SomeIterator KernelEdgeIter
This type depends on the container type in use.
Definition: MeshKernel.hh:113
FinalMeshItems::TexCoord TexCoord
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:99
void request_halfedge_normals()
Request property.
void release_vertex_status()
Remove property.
void set_point(VertexHandle _vh, const Point &_p)
Set the coordinate of a vertex.
bool has_vertex_texcoords3D() const
Is property available?
const StatusInfo & status(VertexHandle _vh) const
Get status.
Add normals to mesh item (vertices/faces)
Definition: Attributes.hh:87