HasBitFlags concept is satisfied only if a Element class provides the member functions specified in this concept. These member functions allows to access to a vcl::comp::BitFlags component of a given element.
More...
#include <vclib/concepts/mesh/components/bit_flags.h>
template<typename T>
{ obj.deleted() } -> std::same_as<bool>;
{
obj.selected() } -> std::convertible_to<bool>;
{
obj.onBorder() } -> std::convertible_to<bool>;
{ obj.selected() } -> std::convertible_to<bool>;
{ obj.userBit(uint()) } -> std::convertible_to<bool>;
{ obj.exportFlagsToVCGFormat() } -> std::same_as<int>;
requires IsConst<T> || requires {
{ obj.selected() } -> BitProxyConcept;
{ obj.onBorder() } -> BitProxyConcept;
{ obj.selected() } -> BitProxyConcept;
{ obj.userBit(uint()) } -> BitProxyConcept;
{ obj.resetBitFlags() } -> std::same_as<void>;
{ obj.importFlagsFromVCGFormat(int()) } -> std::same_as<void>;
};
}
A class representing a line segment in n-dimensional space. The class is parameterized by a PointConc...
Definition segment.h:43
HasBitFlags concept is satisfied only if a Element class provides the member functions specified in t...
Definition bit_flags.h:42
HasBitFlags concept is satisfied only if a Element class provides the member functions specified in this concept. These member functions allows to access to a vcl::comp::BitFlags component of a given element.