Developer Documentation
MeshKernel.hh
1 /* ========================================================================= *
2  * *
3  * OpenMesh *
4  * Copyright (c) 2001-2015, RWTH-Aachen University *
5  * Department of Computer Graphics and Multimedia *
6  * All rights reserved. *
7  * www.openmesh.org *
8  * *
9  *---------------------------------------------------------------------------*
10  * This file is part of OpenMesh. *
11  *---------------------------------------------------------------------------*
12  * *
13  * Redistribution and use in source and binary forms, with or without *
14  * modification, are permitted provided that the following conditions *
15  * are met: *
16  * *
17  * 1. Redistributions of source code must retain the above copyright notice, *
18  * this list of conditions and the following disclaimer. *
19  * *
20  * 2. Redistributions in binary form must reproduce the above copyright *
21  * notice, this list of conditions and the following disclaimer in the *
22  * documentation and/or other materials provided with the distribution. *
23  * *
24  * 3. Neither the name of the copyright holder nor the names of its *
25  * contributors may be used to endorse or promote products derived from *
26  * this software without specific prior written permission. *
27  * *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *
30  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
31  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER *
32  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, *
33  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, *
34  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR *
35  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
36  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
37  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
38  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
39  * *
40  * ========================================================================= */
41 
42 
43 //=============================================================================
44 //
45 // Kernel Concept
46 //
47 //=============================================================================
48 
49 
50 #error this file is for documentation purposes only
51 
52 
53 //== NAMESPACES ===============================================================
54 
55 
56 namespace OpenMesh {
57 namespace Concepts {
58 
59 
60 //== CLASS DEFINITION =========================================================
61 
62 
75 template <class FinalMeshItems> class KernelT
76 {
77 public:
78 
80 
81 
83  typedef typename FinalMeshItems::Vertex Vertex;
84  typedef typename FinalMeshItems::Halfedge Halfedge;
85  typedef typename FinalMeshItems::Edge Edge;
86  typedef typename FinalMeshItems::Face Face;
87  typedef typename FinalMeshItems::Point Point;
88  typedef typename FinalMeshItems::Scalar Scalar;
89  typedef typename FinalMeshItems::Normal Normal;
90  typedef typename FinalMeshItems::Color Color;
91  typedef typename FinalMeshItems::TexCoord TexCoord;
92  typedef typename FinalMeshItems::VertexHandle VertexHandle;
93  typedef typename FinalMeshItems::HalfedgeHandle HalfedgeHandle;
94  typedef typename FinalMeshItems::EdgeHandle EdgeHandle;
95  typedef typename FinalMeshItems::FaceHandle FaceHandle;
96 
98 
99 
101 
102  typedef SomeIterator KernelVertexIter;
104  typedef SomeIterator KernelConstVertexIter;
105  typedef SomeIterator KernelEdgeIter;
106  typedef SomeIterator KernelConstEdgeIter;
107  typedef SomeIterator KernelFaceIter;
108  typedef SomeIterator KernelConstFaceIter;
110 
112 
113  KernelT() {}
115 
117  ~KernelT();
119 
121  KernelT& operator=(const KernelT& _rhs);
122 
123 
136  void reserve( size_t _n_vertices,
137  size_t _n_edges,
138  size_t _n_faces );
139 
140 
142 
143  const Vertex& vertex(VertexHandle _h) const { return deref(_h); }
145  Vertex& vertex(VertexHandle _h) { return deref(_h); }
146  const Halfedge& halfedge(HalfedgeHandle _h) const { return deref(_h); }
147  Halfedge& halfedge(HalfedgeHandle _h) { return deref(_h); }
148  const Edge& edge(EdgeHandle _h) const { return deref(_h); }
149  Edge& edge(EdgeHandle _h) { return deref(_h); }
150  const Face& face(FaceHandle _h) const { return deref(_h); }
151  Face& face(FaceHandle _h) { return deref(_h); }
153 
154 
156 
157  VertexHandle handle(const Vertex& _v) const;
159  HalfedgeHandle handle(const Halfedge& _he) const;
160  EdgeHandle handle(const Edge& _e) const;
161  FaceHandle handle(const Face& _f) const;
163 
164 
166 
167  VertexHandle vertex_handle(unsigned int _i) const;
169  HalfedgeHandle halfedge_handle(unsigned int _i) const;
170  EdgeHandle edge_handle(unsigned int _i) const;
171  FaceHandle face_handle(unsigned int _i) const;
173 
174 
176 
177 
180  void clear();
181 
185  void clean();
186 
196  void garbage_collection();
197 
201  void remove_last_vertex() { vertices_.pop_back(); }
205  void remove_last_edge() { edges_.pop_back(); }
209  void remove_last_face() { faces_.pop_back(); }
210 
212 
213 
214 
215 
217 
218  size_t n_vertices() const;
221  size_t n_halfedges() const;
223  size_t n_edges() const;
225  size_t n_faces() const;
227  bool vertices_empty() const;
229  bool halfedges_empty() const;
231  bool edges_empty() const;
233  bool faces_empty() const;
235 
236 
237 
239 
240  HalfedgeHandle halfedge_handle(VertexHandle _vh) const;
243  void set_halfedge_handle(VertexHandle _vh, HalfedgeHandle _heh);
245  const Point& point(VertexHandle _vh) const;
247  const Point& point(const Vertex& _v) const;
249  void set_point(VertexHandle _vh, const Point& _p);
251  void set_point(Vertex& _v, const Point& _p);
253 
254 
255 
256 
258 
259  VertexHandle to_vertex_handle(HalfedgeHandle _heh) const;
263  VertexHandle from_vertex_handle(HalfedgeHandle _heh) const;
265  void set_vertex_handle(HalfedgeHandle _heh, VertexHandle _vh);
268  FaceHandle face_handle(HalfedgeHandle _heh) const;
270  void set_face_handle(HalfedgeHandle _heh, FaceHandle _fh);
272  HalfedgeHandle next_halfedge_handle(HalfedgeHandle _heh) const;
276  void set_next_halfedge_handle(HalfedgeHandle _heh, HalfedgeHandle _nheh);
280  HalfedgeHandle prev_halfedge_handle(HalfedgeHandle _heh) const;
282  HalfedgeHandle opposite_halfedge_handle(HalfedgeHandle _heh) const;
284  HalfedgeHandle ccw_rotated_halfedge_handle(HalfedgeHandle _heh) const;
286  HalfedgeHandle cw_rotated_halfedge_handle(HalfedgeHandle _heh) const;
288  EdgeHandle edge_handle(HalfedgeHandle _heh) const;
290 
291 
292 
294 
295  HalfedgeHandle halfedge_handle(EdgeHandle _eh, unsigned int _i) const;
298 
299 
300 
302 
303  HalfedgeHandle halfedge_handle(FaceHandle _fh) const;
306  void set_halfedge_handle(FaceHandle _fh, HalfedgeHandle _heh);
308 
309 
310 public: // Standard Property Management
311 
313 
314 
315  // vertex
316  const Point& point(VertexHandle _vh) const;
317  void set_point(VertexHandle _vh, const Point& _p);
318  Point& point(VertexHandle _vh);
319 
320  const Normal& normal(VertexHandle _vh) const;
321  void set_normal(VertexHandle _vh, const Normal& _n);
322 
323  const Normal& normal(HalfedgeHandle _heh) const;
324  void set_normal(HalfedgeHandle _heh, const Normal& _n);
325 
326  const Color& color(VertexHandle _vh) const;
327  void set_color(VertexHandle _vh, const Color& _c);
328 
329  const TexCoord1D& texcoord1D(VertexHandle _vh) const;
330  void set_texcoord1D(VertexHandle _vh, const TexCoord1D& _t);
331 
332  const TexCoord2D& texcoord2D(VertexHandle _vh) const;
333  void set_texcoord2D(VertexHandle _vh, const TexCoord2D& _t);
334 
335  const TexCoord3D& texcoord3D(VertexHandle _vh) const;
336  void set_texcoord3D(VertexHandle _vh, const TexCoord3D& _t);
337 
338  const TexCoord1D& texcoord1D(HalfedgeHandle _hh) const;
339  void set_texcoord1D(HalfedgeHandle _hh, const TexCoord1D& _t);
340 
341  const TexCoord2D& texcoord2D(HalfedgeHandle _hh) const;
342  void set_texcoord2D(HalfedgeHandle _hh, const TexCoord2D& _t);
343 
344  const TexCoord3D& texcoord3D(HalfedgeHandle _hh) const;
345  void set_texcoord3D(HalfedgeHandle _hh, const TexCoord3D& _t);
346 
347  const StatusInfo& status(VertexHandle _vh) const;
348  StatusInfo& status(VertexHandle _vh);
349 
350  // halfedge
351  const StatusInfo& status(HalfedgeHandle _vh) const;
352  StatusInfo& status(HalfedgeHandle _vh);
353 
354  const Color& color(HalfedgeHandle _heh) const;
355  void set_color(HalfedgeHandle _heh, const Color& _c);
356 
357  // edge
358  const Color& color(EdgeHandle _eh) const;
359  void set_color(EdgeHandle _eh, const Color& _c);
360 
361 
362  const StatusInfo& status(EdgeHandle _vh) const;
363  StatusInfo& status(EdgeHandle _vh);
364 
365  // face
366  const Normal& normal(FaceHandle _fh) const;
367  void set_normal(FaceHandle _fh, const Normal& _n);
368 
369  const Color& color(FaceHandle _fh) const;
370  void set_color(FaceHandle _fh, const Color& _c);
371 
372  const StatusInfo& status(FaceHandle _vh) const;
373  StatusInfo& status(FaceHandle _vh);
374 
376 
378 
379  void request_vertex_normals();
381  void request_vertex_colors();
385  void request_vertex_status();
386 
393 
394  void request_edge_status();
395  void request_edge_colors();
396 
397  void request_face_normals();
398  void request_face_colors();
399  void request_face_status();
402 
404 
405  void release_vertex_normals();
407  void release_vertex_colors();
411  void release_vertex_status();
412 
419 
420  void release_edge_status();
421  void release_edge_colors();
422 
423  void release_face_normals();
424  void release_face_colors();
425  void release_face_status();
428 
430 
431  bool has_vertex_normals() const;
433  bool has_vertex_colors() const;
434  bool has_vertex_texcoords1D() const;
435  bool has_vertex_texcoords2D() const;
436  bool has_vertex_texcoords3D() const;
437  bool has_vertex_status() const;
438 
439  bool has_halfedge_status() const;
440  bool has_halfedge_normals() const;
441  bool has_halfedge_colors() const;
442  bool has_halfedge_texcoords1D() const;
443  bool has_halfedge_texcoords2D() const;
444  bool has_halfedge_texcoords3D() const;
445 
446  bool has_edge_status() const;
447  bool has_edge_colors() const;
448 
449  bool has_face_normals() const;
450  bool has_face_colors() const;
451  bool has_face_status() const;
452  bool has_face_texture_index() const;
454 
455 public: // Property Management
456 
458 
460 
461  template <typename T> void add_property( [VEHFM]PropHandleT<T>& _ph,
464  const std::string& _name = "" );
466 
468 
469  template <typename T> void remove_property( [VEHFM]PropHandleT<T>& );
472 
474 
475  template <typename T>
477  bool get_property_handle( [VEHFM]PropHandleT<T>& ph, const std::string& _n ) const;
479 
481 
482  template <typename T> PropertyT<T>& property( [VEHF]PropHandleT<T> _ph );
484  template <typename T> const PropertyT<T>& property( [VEHF]PropHandleT<T> _ph ) const;
485  template <typename T> PropertyT<T>& mproperty( MPropHandleT<T> _ph );
486  template <typename T> const PropertyT<T>& mproperty( MPropHandleT<T> _ph ) const;
488 
490 
491 
493  template <typename T>
494  T& property( VPropHandleT<T> _ph, VertexHandle _vh );
495  template <typename T>
496  const T& property( VPropHandleT<T> _ph, VertexHandle _vh ) const;
497 
498  template <typename T>
499  T& property( EPropHandleT<T> _ph, EdgeHandle _vh );
500  template <typename T>
501  const T& property( EPropHandleT<T> _ph, EdgeHandle _vh ) const;
502 
503  template <typename T>
504  T& property( HPropHandleT<T> _ph, HalfedgeHandle _vh );
505  template <typename T>
506  const T& property( HPropHandleT<T> _ph, HalfedgeHandle _vh ) const;
507 
508  template <typename T>
509  T& property( FPropHandleT<T> _ph, FaceHandle _vh );
510  template <typename T>
511  const T& property( FPropHandleT<T> _ph, FaceHandle _vh ) const;
512 
513  template <typename T>
514  T& property( MPropHandleT<T> _ph );
515  template <typename T>
516  const T& property( MPropHandleT<T> _ph ) const;
517 
519 
520 public:
521 
522 
524 
525 
527  VertexHandle new_vertex();
530  VertexHandle new_vertex(const Point& _p);
533  VertexHandle new_vertex(const Vertex& _v);
539  HalfedgeHandle new_edge(VertexHandle _start_vertex_handle,
540  VertexHandle _end_vertex_handle);
541 
545  FaceHandle new_face();
548  FaceHandle new_face(const Face& _f);
550 
551 
552  // --- iterators ---
553 
555 
556 
558  KernelVertexIter vertices_begin();
559  KernelConstVertexIter vertices_begin() const;
560  KernelVertexIter vertices_end();
561  KernelConstVertexIter vertices_end() const;
562  KernelEdgeIter edges_begin();
563  KernelConstEdgeIter edges_begin() const;
564  KernelEdgeIter edges_end();
565  KernelConstEdgeIter edges_end() const;
566  KernelFaceIter faces_begin();
567  KernelConstFaceIter faces_begin() const;
568  KernelFaceIter faces_end();
569  KernelConstFaceIter faces_end() const;
571 
572 
573 
574 private:
575 
576 
577  // --- private functions ---
578 
580  KernelT(const KernelT& _rhs);
581 };
582 };
583 
584 
585 //=============================================================================
586 } // namespace Concepts
587 } // namespace OpenMesh
588 //=============================================================================
KernelEdgeIter edges_begin()
const Normal & normal(VertexHandle _vh) const
Get normal.
FinalMeshItems::EdgeHandle EdgeHandle
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:94
Vertex & vertex(VertexHandle _h)
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:145
bool has_face_status() const
Is property available?
SomeIterator KernelConstVertexIter
This type depends on the container type in use.
Definition: MeshKernel.hh:104
FinalMeshItems::VertexHandle VertexHandle
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:92
SomeIterator KernelConstEdgeIter
This type depends on the container type in use.
Definition: MeshKernel.hh:106
void release_face_colors()
Remove property.
void release_halfedge_status()
Remove property.
Add 3D texture coordinates (vertices, halfedges)
Definition: Attributes.hh:88
const Point & point(VertexHandle _vh) const
Get the coordinate of a vertex.
void request_vertex_texcoords1D()
Request property.
void release_vertex_normals()
Remove property.
bool has_edge_status() const
Is property available?
void request_vertex_texcoords2D()
Request property.
void set_texcoord2D(VertexHandle _vh, const TexCoord2D &_t)
Set texture coordinate.
void request_face_colors()
Request property.
FinalMeshItems::Normal Normal
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:89
void request_vertex_status()
Request property.
FinalMeshItems::Halfedge Halfedge
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:84
SomeIterator KernelFaceIter
This type depends on the container type in use.
Definition: MeshKernel.hh:107
FaceHandle face_handle(unsigned int _i) const
Get the i&#39;th item.
HalfedgeHandle prev_halfedge_handle(HalfedgeHandle _heh) const
SomeIterator KernelEdgeIter
This type depends on the container type in use.
Definition: MeshKernel.hh:105
void set_halfedge_handle(VertexHandle _vh, HalfedgeHandle _heh)
Set the outgoing halfedge handle of a given vertex.
HalfedgeHandle new_edge(VertexHandle _start_vertex_handle, VertexHandle _end_vertex_handle)
void release_vertex_colors()
Remove property.
void release_halfedge_texcoords1D()
Remove property.
void request_halfedge_texcoords1D()
Request property.
bool has_face_texture_index() const
Is property available?
FinalMeshItems::Face Face
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:86
void release_halfedge_colors()
Remove property.
Edge & edge(EdgeHandle _h)
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:149
bool has_edge_colors() const
Is property available?
const Vertex & vertex(VertexHandle _h) const
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:144
bool has_vertex_texcoords2D() const
Is property available?
bool get_property_handle([VEHFM]PropHandleT< T > &ph, const std::string &_n) const
Get property handle by name.
PropertyT< T > & mproperty(MPropHandleT< T > _ph)
Get property.
void release_halfedge_normals()
Remove property.
FinalMeshItems::Point Point
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:87
void release_face_status()
Remove property.
VertexHandle from_vertex_handle(HalfedgeHandle _heh) const
bool has_halfedge_colors() const
Is property available?
void set_color(VertexHandle _vh, const Color &_c)
Set color.
void release_vertex_texcoords2D()
Remove property.
void set_vertex_handle(HalfedgeHandle _heh, VertexHandle _vh)
Set the to-vertex-handle of the halfedge.
void add_property([VEHFM]PropHandleT< T > &_ph, const std::string &_name="")
Add 2D texture coordinates (vertices, halfedges)
Definition: Attributes.hh:87
void request_halfedge_colors()
Request property.
void release_face_normals()
Remove property.
KernelFaceIter faces_end()
const TexCoord2D & texcoord2D(VertexHandle _vh) const
Get texture coordinate.
bool edges_empty() const
Is the edge container empty?
void release_halfedge_texcoords3D()
Remove property.
bool has_halfedge_status() const
Is property available?
KernelT & operator=(const KernelT &_rhs)
Assignment operator.
const Color & color(VertexHandle _vh) const
Get color.
HalfedgeHandle opposite_halfedge_handle(HalfedgeHandle _heh) const
Get the opposite halfedge.
Add colors to mesh item (vertices/faces/edges)
Definition: Attributes.hh:83
FinalMeshItems::FaceHandle FaceHandle
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:95
KernelT()
Default constructor.
Definition: MeshKernel.hh:114
void set_point(VertexHandle _vh, const Point &_p)
Set the coordinate of a vertex.
bool has_face_normals() const
Is property available?
void request_face_texture_index()
Request property.
void release_face_texture_index()
Remove property.
bool has_halfedge_texcoords1D() const
Is property available?
HalfedgeHandle next_halfedge_handle(HalfedgeHandle _heh) const
Get the next halfedge handle.
void request_vertex_colors()
Request property.
Default property class for any type T.
Definition: Property.hh:89
bool has_vertex_colors() const
Is property available?
void remove_property([VEHFM]PropHandleT< T > &)
Remove property.
VertexHandle to_vertex_handle(HalfedgeHandle _heh) const
Get the vertex the halfedge points to.
bool has_vertex_texcoords1D() const
Is property available?
size_t n_faces() const
Returns number of faces.
bool has_vertex_normals() const
Is property available?
Face & face(FaceHandle _h)
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:151
void request_halfedge_texcoords2D()
Request property.
KernelEdgeIter edges_end()
void release_edge_status()
Remove property.
VertexHandle vertex_handle(unsigned int _i) const
Get the i&#39;th item.
void release_vertex_texcoords3D()
Remove property.
bool faces_empty() const
Is the face container empty?
FinalMeshItems::Edge Edge
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:85
void release_halfedge_texcoords2D()
Remove property.
bool has_halfedge_texcoords2D() const
Is property available?
size_t n_vertices() const
Returns number of vertices.
FinalMeshItems::Color Color
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:90
FinalMeshItems::Vertex Vertex
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:83
void set_next_halfedge_handle(HalfedgeHandle _heh, HalfedgeHandle _nheh)
bool has_halfedge_normals() const
Is property available?
HalfedgeHandle ccw_rotated_halfedge_handle(HalfedgeHandle _heh) const
Counter-clockwise rotate the given halfedge around its from vertex.
void release_vertex_texcoords1D()
Remove property.
const TexCoord1D & texcoord1D(VertexHandle _vh) const
Get texture coordinate.
void set_normal(VertexHandle _vh, const Normal &_n)
Set normal.
const Face & face(FaceHandle _h) const
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:150
HalfedgeHandle cw_rotated_halfedge_handle(HalfedgeHandle _heh) const
Clockwise rotate the given halfedge around its from vertex.
void request_face_normals()
Request property.
EdgeHandle edge_handle(unsigned int _i) const
Get the i&#39;th item.
void release_vertex_status()
Remove property.
void release_edge_colors()
Remove property.
bool vertices_empty() const
Is the vertex container empty?
bool has_vertex_status() const
Is property available?
HalfedgeHandle halfedge_handle(unsigned int _i) const
Get the i&#39;th item.
size_t n_edges() const
Returns number of edges.
PropertyT< T > & property([VEHF]PropHandleT< T > _ph)
Get property.
bool has_halfedge_texcoords3D() const
Is property available?
void set_face_handle(HalfedgeHandle _heh, FaceHandle _fh)
Set the face the halfedge belongs to.
Add 1D texture coordinates (vertices, halfedges)
Definition: Attributes.hh:86
void request_edge_colors()
Request property.
void request_edge_status()
Request property.
const Edge & edge(EdgeHandle _h) const
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:148
KernelVertexIter vertices_end()
Halfedge & halfedge(HalfedgeHandle _h)
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:147
void request_halfedge_texcoords3D()
Request property.
void set_texcoord1D(VertexHandle _vh, const TexCoord1D &_t)
Set texture coordinate.
KernelVertexIter vertices_begin()
const TexCoord3D & texcoord3D(VertexHandle _vh) const
Get texture coordinate.
void request_face_status()
Request property.
void request_halfedge_normals()
Request property.
SomeIterator KernelVertexIter
This type depends on the container type in use.
Definition: MeshKernel.hh:103
FinalMeshItems::HalfedgeHandle HalfedgeHandle
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:93
void request_vertex_normals()
Request property.
const Halfedge & halfedge(HalfedgeHandle _h) const
Translate handle to item (see also OpenMesh::PolyMeshT::deref())
Definition: MeshKernel.hh:146
VertexHandle handle(const Vertex &_v) const
Translate item to handle.
void reserve(size_t _n_vertices, size_t _n_edges, size_t _n_faces)
bool has_face_colors() const
Is property available?
void set_texcoord3D(VertexHandle _vh, const TexCoord3D &_t)
Set texture coordinate.
KernelFaceIter faces_begin()
const StatusInfo & status(VertexHandle _vh) const
Get status.
bool halfedges_empty() const
Is the halfedge container empty (should be the same as edges_empty()).
void request_halfedge_status()
Request property.
SomeIterator KernelConstFaceIter
This type depends on the container type in use.
Definition: MeshKernel.hh:108
bool has_vertex_texcoords3D() const
Is property available?
FinalMeshItems::TexCoord TexCoord
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:91
FinalMeshItems::Scalar Scalar
Derive this type from the FinalMeshItems.
Definition: MeshKernel.hh:88
size_t n_halfedges() const
Returns number of halfedges (should be 2*n_edges())
void request_vertex_texcoords3D()
Request property.