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