57 #ifndef OPENMESH_ATTRIBUTE_STATUS_HH 58 #define OPENMESH_ATTRIBUTE_STATUS_HH 63 #include <OpenMesh/Core/System/config.h> 70 namespace Attributes {
103 typedef unsigned int value_type;
156 unsigned int bits()
const {
return status_; }
158 void set_bits(
unsigned int _bits) { status_ = _bits; }
162 bool is_bit_set(
unsigned int _s)
const {
return (status_ & _s) > 0; }
164 void set_bit(
unsigned int _s) { status_ |= _s; }
169 if (_b) status_ |= _s;
else status_ &= ~_s; }
182 #endif // OPENMESH_ATTRIBUTE_STATUS_HH defined void set_locked(bool _b)
set locked
Definition: Status.hh:116
void change_bit(unsigned int _s, bool _b)
set or unset a certain bit
Definition: Status.hh:168
bool hidden() const
is hidden ?
Definition: Status.hh:126
Item has been deleted.
Definition: Status.hh:81
Contains all the mesh ingredients like the polygonal mesh, the triangle mesh, different mesh kernels ...
Definition: MeshItems.hh:64
Item is locked.
Definition: Status.hh:82
Item is hidden.
Definition: Status.hh:84
void set_feature(bool _b)
set feature
Definition: Status.hh:134
bool locked() const
is locked ?
Definition: Status.hh:114
void set_selected(bool _b)
set selected
Definition: Status.hh:122
void set_deleted(bool _b)
set deleted
Definition: Status.hh:110
bool deleted() const
is deleted ?
Definition: Status.hh:108
Item was non-two-manifold and had to be fixed.
Definition: Status.hh:88
bool is_bit_set(unsigned int _s) const
is a certain bit set ?
Definition: Status.hh:162
Add status information to a base class.
Definition: Status.hh:99
Item is tagged.
Definition: Status.hh:86
Alternate bit for tagging an item.
Definition: Status.hh:87
bool selected() const
is selected ?
Definition: Status.hh:120
bool tagged() const
is tagged ?
Definition: Status.hh:138
void set_tagged(bool _b)
set tagged
Definition: Status.hh:140
void unset_bit(unsigned int _s)
unset a certain bit
Definition: Status.hh:166
Unused.
Definition: Status.hh:89
void set_fixed_nonmanifold(bool _b)
set fixed non-manifold
Definition: Status.hh:152
bool fixed_nonmanifold() const
is fixed non-manifold ?
Definition: Status.hh:150
Item is selected.
Definition: Status.hh:83
StatusBits
Status bits used by the Status class.
Definition: Status.hh:79
bool feature() const
is feature ?
Definition: Status.hh:132
Item is a feature or belongs to a feature.
Definition: Status.hh:85
void set_bits(unsigned int _bits)
set whole status at once
Definition: Status.hh:158
bool tagged2() const
is tagged2 ? This is just one more tag info.
Definition: Status.hh:144
void set_tagged2(bool _b)
set tagged
Definition: Status.hh:146
void set_hidden(bool _b)
set hidden
Definition: Status.hh:128
void set_bit(unsigned int _s)
set a certain bit
Definition: Status.hh:164
unsigned int bits() const
return whole status
Definition: Status.hh:156