57 #ifndef OPENMESH_BASE_KERNEL_HH 58 #define OPENMESH_BASE_KERNEL_HH 64 #include <OpenMesh/Core/System/config.h> 71 #include <OpenMesh/Core/Utils/PropertyContainer.hh> 149 vprops_.resize(n_vertices());
156 hprops_.resize(n_halfedges());
163 eprops_.resize(n_edges());
170 fprops_.resize(n_faces());
198 template <
typename T>
206 template <
typename T>
214 template <
typename T>
222 template <
typename T>
230 template <
typename T>
260 const std::string& _name)
const 267 const std::string& _name)
const 274 const std::string& _name)
const 281 const std::string& _name)
const 288 const std::string& _name)
const 316 return vprops_.property(_ph);
320 return vprops_.property(_ph);
325 return hprops_.property(_ph);
329 return hprops_.property(_ph);
334 return eprops_.property(_ph);
338 return eprops_.property(_ph);
343 return fprops_.property(_ph);
347 return fprops_.property(_ph);
352 return mprops_.property(_ph);
356 return mprops_.property(_ph);
373 typename VPropHandleT<T>::reference
375 return vprops_.property(_ph)[_vh.
idx()];
379 typename VPropHandleT<T>::const_reference
381 return vprops_.property(_ph)[_vh.
idx()];
386 typename HPropHandleT<T>::reference
388 return hprops_.property(_ph)[_hh.
idx()];
392 typename HPropHandleT<T>::const_reference
394 return hprops_.property(_ph)[_hh.
idx()];
399 typename EPropHandleT<T>::reference
401 return eprops_.property(_ph)[_eh.
idx()];
405 typename EPropHandleT<T>::const_reference
407 return eprops_.property(_ph)[_eh.
idx()];
412 typename FPropHandleT<T>::reference
414 return fprops_.property(_ph)[_fh.
idx()];
418 typename FPropHandleT<T>::const_reference
420 return fprops_.property(_ph)[_fh.
idx()];
425 typename MPropHandleT<T>::reference
427 return mprops_.property(_ph)[0];
431 typename MPropHandleT<T>::const_reference
433 return mprops_.property(_ph)[0];
454 vprops_.property(_ph)[_vh_to.
idx()] = vprops_.property(_ph)[_vh_from.
idx()];
470 hprops_.property(_ph)[_hh_to.
idx()] = hprops_.property(_ph)[_hh_from.
idx()];
486 eprops_.property(_ph)[_eh_to.
idx()] = eprops_.property(_ph)[_eh_from.
idx()];
502 fprops_.property(_ph)[_fh_to.
idx()] = fprops_.property(_ph)[_fh_from.
idx()];
518 for( PropertyContainer::iterator p_it = vprops_.begin();
519 p_it != vprops_.end(); ++p_it) {
523 if ( *p_it && ( _copyBuildIn || (*p_it)->name().substr(0,2) !=
"v:" ) )
524 (*p_it)->copy(_vh_from.
idx(), _vh_to.
idx());
537 for( PropertyContainer::iterator p_it = hprops_.begin();
538 p_it != hprops_.end(); ++p_it) {
542 if ( *p_it && ( _copyBuildIn || (*p_it)->name().substr(0,2) !=
"h:") )
543 (*p_it)->copy(_hh_from.
idx(), _hh_to.
idx());
555 for( PropertyContainer::iterator p_it = eprops_.begin();
556 p_it != eprops_.end(); ++p_it) {
560 if ( *p_it && ( _copyBuildIn || (*p_it)->name().substr(0,2) !=
"e:") )
561 (*p_it)->copy(_eh_from.
idx(), _eh_to.
idx());
575 for( PropertyContainer::iterator p_it = fprops_.begin();
576 p_it != fprops_.end(); ++p_it) {
580 if ( *p_it && ( _copyBuildIn || (*p_it)->name().substr(0,2) !=
"f:") )
581 (*p_it)->copy(_fh_from.
idx(), _fh_to.
idx());
592 this->vprops_ = _other.vprops_;
593 this->eprops_ = _other.eprops_;
594 this->hprops_ = _other.hprops_;
595 this->fprops_ = _other.fprops_;
602 size_t n_vprops(
void)
const {
return vprops_.size(); }
604 size_t n_eprops(
void)
const {
return eprops_.size(); }
606 size_t n_hprops(
void)
const {
return hprops_.size(); }
608 size_t n_fprops(
void)
const {
return fprops_.size(); }
610 size_t n_mprops(
void)
const {
return mprops_.size(); }
613 {
return vprops_.property(_name); }
616 {
return eprops_.property(_name); }
619 {
return hprops_.property(_name); }
622 {
return fprops_.property(_name); }
625 {
return mprops_.property(_name); }
627 const BaseProperty* _get_vprop(
const std::string& _name)
const 628 {
return vprops_.property(_name); }
630 const BaseProperty* _get_eprop(
const std::string& _name)
const 631 {
return eprops_.property(_name); }
633 const BaseProperty* _get_hprop(
const std::string& _name)
const 634 {
return hprops_.property(_name); }
636 const BaseProperty* _get_fprop(
const std::string& _name)
const 637 {
return fprops_.property(_name); }
639 const BaseProperty* _get_mprop(
const std::string& _name)
const 640 {
return mprops_.property(_name); }
642 BaseProperty& _vprop(
size_t _idx ) {
return vprops_._property( _idx ); }
643 BaseProperty& _eprop(
size_t _idx ) {
return eprops_._property( _idx ); }
644 BaseProperty& _hprop(
size_t _idx ) {
return hprops_._property( _idx ); }
645 BaseProperty& _fprop(
size_t _idx ) {
return fprops_._property( _idx ); }
646 BaseProperty& _mprop(
size_t _idx ) {
return mprops_._property( _idx ); }
649 {
return vprops_._property( _idx ); }
651 {
return eprops_._property( _idx ); }
653 {
return hprops_._property( _idx ); }
655 {
return fprops_._property( _idx ); }
657 {
return mprops_._property( _idx ); }
659 size_t _add_vprop(
BaseProperty* _bp ) {
return vprops_._add( _bp ); }
660 size_t _add_eprop(
BaseProperty* _bp ) {
return eprops_._add( _bp ); }
661 size_t _add_hprop(
BaseProperty* _bp ) {
return hprops_._add( _bp ); }
662 size_t _add_fprop(
BaseProperty* _bp ) {
return fprops_._add( _bp ); }
663 size_t _add_mprop(
BaseProperty* _bp ) {
return mprops_._add( _bp ); }
668 {
return vprops_._property( _h.
idx() ); }
670 {
return eprops_._property( _h.
idx() ); }
672 {
return hprops_._property( _h.
idx() ); }
674 {
return fprops_._property( _h.
idx() ); }
676 {
return mprops_._property( _h.
idx() ); }
679 {
return vprops_._property( _h.
idx() ); }
681 {
return eprops_._property( _h.
idx() ); }
683 {
return hprops_._property( _h.
idx() ); }
685 {
return fprops_._property( _h.
idx() ); }
687 {
return mprops_._property( _h.
idx() ); }
693 virtual size_t n_vertices()
const {
return 0; }
694 virtual size_t n_halfedges()
const {
return 0; }
695 virtual size_t n_edges()
const {
return 0; }
696 virtual size_t n_faces()
const {
return 0; }
717 void vprops_clear() {
721 void vprops_swap(
unsigned int _i0,
unsigned int _i1)
const {
722 vprops_.swap(_i0, _i1);
725 void hprops_reserve(
size_t _n)
const { hprops_.reserve(_n); }
726 void hprops_resize(
size_t _n)
const { hprops_.resize(_n); }
727 void hprops_clear() {
730 void hprops_swap(
unsigned int _i0,
unsigned int _i1)
const {
731 hprops_.swap(_i0, _i1);
734 void eprops_reserve(
size_t _n)
const { eprops_.reserve(_n); }
735 void eprops_resize(
size_t _n)
const { eprops_.resize(_n); }
736 void eprops_clear() {
739 void eprops_swap(
unsigned int _i0,
unsigned int _i1)
const {
740 eprops_.swap(_i0, _i1);
743 void fprops_reserve(
size_t _n)
const { fprops_.reserve(_n); }
744 void fprops_resize(
size_t _n)
const { fprops_.resize(_n); }
745 void fprops_clear() {
748 void fprops_swap(
unsigned int _i0,
unsigned int _i1)
const {
749 fprops_.swap(_i0, _i1);
752 void mprops_resize(
size_t _n)
const { mprops_.resize(_n); }
753 void mprops_clear() {
760 void property_stats()
const;
761 void property_stats(std::ostream& _ostr)
const;
763 void vprop_stats( std::string& _string )
const;
764 void hprop_stats( std::string& _string )
const;
765 void eprop_stats( std::string& _string )
const;
766 void fprop_stats( std::string& _string )
const;
767 void mprop_stats( std::string& _string )
const;
770 void vprop_stats()
const;
771 void hprop_stats()
const;
772 void eprop_stats()
const;
773 void fprop_stats()
const;
774 void mprop_stats()
const;
776 void vprop_stats(std::ostream& _ostr)
const;
777 void hprop_stats(std::ostream& _ostr)
const;
778 void eprop_stats(std::ostream& _ostr)
const;
779 void fprop_stats(std::ostream& _ostr)
const;
780 void mprop_stats(std::ostream& _ostr)
const;
784 typedef PropertyContainer::iterator prop_iterator;
785 typedef PropertyContainer::const_iterator const_prop_iterator;
787 prop_iterator vprops_begin() {
return vprops_.begin(); }
788 prop_iterator vprops_end() {
return vprops_.end(); }
789 const_prop_iterator vprops_begin()
const {
return vprops_.begin(); }
790 const_prop_iterator vprops_end()
const {
return vprops_.end(); }
792 prop_iterator eprops_begin() {
return eprops_.begin(); }
793 prop_iterator eprops_end() {
return eprops_.end(); }
794 const_prop_iterator eprops_begin()
const {
return eprops_.begin(); }
795 const_prop_iterator eprops_end()
const {
return eprops_.end(); }
797 prop_iterator hprops_begin() {
return hprops_.begin(); }
798 prop_iterator hprops_end() {
return hprops_.end(); }
799 const_prop_iterator hprops_begin()
const {
return hprops_.begin(); }
800 const_prop_iterator hprops_end()
const {
return hprops_.end(); }
802 prop_iterator fprops_begin() {
return fprops_.begin(); }
803 prop_iterator fprops_end() {
return fprops_.end(); }
804 const_prop_iterator fprops_begin()
const {
return fprops_.begin(); }
805 const_prop_iterator fprops_end()
const {
return fprops_.end(); }
807 prop_iterator mprops_begin() {
return mprops_.begin(); }
808 prop_iterator mprops_end() {
return mprops_.end(); }
809 const_prop_iterator mprops_begin()
const {
return mprops_.begin(); }
810 const_prop_iterator mprops_end()
const {
return mprops_.end(); }
825 #endif // OPENMESH_BASE_KERNEL_HH defined void copy_all_properties(FaceHandle _fh_from, FaceHandle _fh_to, bool _copyBuildIn=false)
Copies all properties from one mesh element to another (of the same type)
Definition: BaseKernel.hh:573
const PropertyT< T > & property(HPropHandleT< T > _ph) const
In most cases you should use the convenient PropertyManager wrapper and use of this function should n...
Definition: BaseKernel.hh:328
void remove_property(EPropHandleT< T > &_ph)
You should not use this function directly.
Definition: BaseKernel.hh:215
FPropHandleT< T >::reference property(FPropHandleT< T > _ph, FaceHandle _fh)
You should not use this function directly.
Definition: BaseKernel.hh:413
void copy_property(HPropHandleT< T > _ph, HalfedgeHandle _hh_from, HalfedgeHandle _hh_to)
You should not use this function directly.
Definition: BaseKernel.hh:468
Contains all the mesh ingredients like the polygonal mesh, the triangle mesh, different mesh kernels ...
Definition: MeshItems.hh:64
FPropHandleT< T >::const_reference property(FPropHandleT< T > _ph, FaceHandle _fh) const
You should not use this function directly.
Definition: BaseKernel.hh:419
void copy_property(VPropHandleT< T > &_ph, VertexHandle _vh_from, VertexHandle _vh_to)
You should not use this function directly.
Definition: BaseKernel.hh:452
void remove_property(FPropHandleT< T > &_ph)
You should not use this function directly.
Definition: BaseKernel.hh:223
int idx() const
Get the underlying index of this handle.
Definition: Handles.hh:74
void copy_all_properties(HalfedgeHandle _hh_from, HalfedgeHandle _hh_to, bool _copyBuildIn=false)
Copies all properties from one mesh element to another (of the same type)
Definition: BaseKernel.hh:535
Handle representing a mesh property.
Definition: Property.hh:543
void remove_property(HPropHandleT< T > &_ph)
You should not use this function directly.
Definition: BaseKernel.hh:207
Handle representing a halfedge property.
Definition: Property.hh:501
PropertyT< T > & property(FPropHandleT< T > _ph)
In most cases you should use the convenient PropertyManager wrapper and use of this function should n...
Definition: BaseKernel.hh:342
void copy_all_properties(EdgeHandle _eh_from, EdgeHandle _eh_to, bool _copyBuildIn=false)
Copies all properties from one mesh element to another (of the same type)
Definition: BaseKernel.hh:554
void remove_property(MPropHandleT< T > &_ph)
You should not use this function directly.
Definition: BaseKernel.hh:231
const PropertyT< T > & property(FPropHandleT< T > _ph) const
In most cases you should use the convenient PropertyManager wrapper and use of this function should n...
Definition: BaseKernel.hh:346
bool get_property_handle(FPropHandleT< T > &_ph, const std::string &_name) const
You should not use this function directly.
Definition: BaseKernel.hh:280
void copy_all_kernel_properties(const BaseKernel &_other)
copy_all_kernel_properties uses the = operator to copy all properties from a given other BaseKernel...
Definition: BaseKernel.hh:590
void add_property(VPropHandleT< T > &_ph, const std::string &_name="<vprop>")
You should not use this function directly.
Definition: BaseKernel.hh:146
void reset()
reset handle to be invalid
Definition: Handles.hh:80
void copy_all_properties(VertexHandle _vh_from, VertexHandle _vh_to, bool _copyBuildIn=false)
Copies all properties from one mesh element to another (of the same type)
Definition: BaseKernel.hh:516
void copy_property(FPropHandleT< T > _ph, FaceHandle _fh_from, FaceHandle _fh_to)
You should not use this function directly.
Definition: BaseKernel.hh:500
MPropHandleT< T >::const_reference property(MPropHandleT< T > _ph) const
You should not use this function directly.
Definition: BaseKernel.hh:432
Handle for a halfedge entity.
Definition: Handles.hh:132
This class provides low-level property management like adding/removing properties and access to prope...
Definition: BaseKernel.hh:102
bool get_property_handle(EPropHandleT< T > &_ph, const std::string &_name) const
You should not use this function directly.
Definition: BaseKernel.hh:273
VPropHandleT< T >::const_reference property(VPropHandleT< T > _ph, VertexHandle _vh) const
You should not use this function directly.
Definition: BaseKernel.hh:380
MPropHandleT< T >::reference property(MPropHandleT< T > _ph)
You should not use this function directly.
Definition: BaseKernel.hh:426
void vprops_resize(size_t _n) const
Resizes all vertex property vectors to the specified size.
Definition: BaseKernel.hh:705
Handle representing a face property.
Definition: Property.hh:529
Handle for a face entity.
Definition: Handles.hh:146
HPropHandleT< T >::const_reference property(HPropHandleT< T > _ph, HalfedgeHandle _hh) const
You should not use this function directly.
Definition: BaseKernel.hh:393
Handle representing a vertex property.
Definition: Property.hh:487
void vprops_resize_if_smaller(size_t _n) const
Same as vprops_resize() but ignores vertex property vectors that have a size larger than _n...
Definition: BaseKernel.hh:715
const PropertyT< T > & property(EPropHandleT< T > _ph) const
In most cases you should use the convenient PropertyManager wrapper and use of this function should n...
Definition: BaseKernel.hh:337
HPropHandleT< T >::reference property(HPropHandleT< T > _ph, HalfedgeHandle _hh)
You should not use this function directly.
Definition: BaseKernel.hh:387
bool get_property_handle(HPropHandleT< T > &_ph, const std::string &_name) const
You should not use this function directly.
Definition: BaseKernel.hh:266
Default property class for any type T.
Definition: Property.hh:94
A a container for properties.
Definition: PropertyContainer.hh:67
PropertyT< T > & property(VPropHandleT< T > _ph)
In most cases you should use the convenient PropertyManager wrapper and use of this function should n...
Definition: BaseKernel.hh:315
Handle representing an edge property.
Definition: Property.hh:515
const PropertyT< T > & mproperty(MPropHandleT< T > _ph) const
In most cases you should use the convenient PropertyManager wrapper and use of this function should n...
Definition: BaseKernel.hh:355
PropertyT< T > & mproperty(MPropHandleT< T > _ph)
In most cases you should use the convenient PropertyManager wrapper and use of this function should n...
Definition: BaseKernel.hh:351
Handle for a vertex entity.
Definition: Handles.hh:125
bool is_valid() const
The handle is valid iff the index is not negative.
Definition: Handles.hh:77
EPropHandleT< T >::const_reference property(EPropHandleT< T > _ph, EdgeHandle _eh) const
You should not use this function directly.
Definition: BaseKernel.hh:406
void vprops_reserve(size_t _n) const
Reserves space for _n elements in all vertex property vectors.
Definition: BaseKernel.hh:702
Abstract class defining the basic interface of a dynamic property.
Definition: BaseProperty.hh:65
void add_property(HPropHandleT< T > &_ph, const std::string &_name="<hprop>")
You should not use this function directly.
Definition: BaseKernel.hh:153
void add_property(FPropHandleT< T > &_ph, const std::string &_name="<fprop>")
You should not use this function directly.
Definition: BaseKernel.hh:167
bool get_property_handle(MPropHandleT< T > &_ph, const std::string &_name) const
You should not use this function directly.
Definition: BaseKernel.hh:287
Handle for a edge entity.
Definition: Handles.hh:139
Base class for all handle types.
Definition: Handles.hh:67
void add_property(EPropHandleT< T > &_ph, const std::string &_name="<eprop>")
You should not use this function directly.
Definition: BaseKernel.hh:160
void add_property(MPropHandleT< T > &_ph, const std::string &_name="<mprop>")
You should not use this function directly.
Definition: BaseKernel.hh:174
VPropHandleT< T >::reference property(VPropHandleT< T > _ph, VertexHandle _vh)
You should not use this function directly.
Definition: BaseKernel.hh:374
PropertyT< T > & property(HPropHandleT< T > _ph)
In most cases you should use the convenient PropertyManager wrapper and use of this function should n...
Definition: BaseKernel.hh:324
void remove_property(VPropHandleT< T > &_ph)
You should not use this function directly.
Definition: BaseKernel.hh:199
EPropHandleT< T >::reference property(EPropHandleT< T > _ph, EdgeHandle _eh)
You should not use this function directly.
Definition: BaseKernel.hh:400
bool get_property_handle(VPropHandleT< T > &_ph, const std::string &_name) const
You should not use this function directly.
Definition: BaseKernel.hh:259
void copy_property(EPropHandleT< T > _ph, EdgeHandle _eh_from, EdgeHandle _eh_to)
You should not use this function directly.
Definition: BaseKernel.hh:484
PropertyT< T > & property(EPropHandleT< T > _ph)
In most cases you should use the convenient PropertyManager wrapper and use of this function should n...
Definition: BaseKernel.hh:333
const PropertyT< T > & property(VPropHandleT< T > _ph) const
In most cases you should use the convenient PropertyManager wrapper and use of this function should n...
Definition: BaseKernel.hh:319