40 HalfEdge(
int dual,
int next,
int point,
bool mbreak,
bool forced );
49 bool getBreak()
const;
51 bool getForced()
const;
53 void setDual(
int d );
55 void setNext(
int n );
57 void setPoint(
int p );
59 void setBreak(
bool b );
61 void setForced(
bool f );
64 inline HalfEdge::HalfEdge(): mDual( -10 ), mNext( -10 ), mPoint( -10 ), mBreak( false ), mForced( false )
bool getBreak() const
Returns, whether the HalfEdge belongs to a break line or not.
int getPoint() const
Returns the number of the point at which this HalfEdge points.
int getNext() const
Returns the number of the next HalfEdge.
HalfEdge()
Default constructor.
int mPoint
Number of the point at which this HalfEdge points.
int mDual
Number of the dual HalfEdge.
bool getForced() const
Returns, whether the HalfEdge belongs to a constrained edge or not.
bool mForced
True, if the HalfEdge belongs to a constrained edge, false otherwise.
bool mBreak
True, if the HalfEdge belongs to a break line, false otherwise.
void setBreak(bool b)
Sets the break flag.
void setPoint(int p)
Sets the number of point at which this HalfEdge points.
int getDual() const
Returns the number of the dual HalfEdge.
int mNext
Number of the next HalfEdge.
void setDual(int d)
Sets the number of the dual HalfEdge.
void setForced(bool f)
Sets the forced flag.
void setNext(int n)
Sets the number of the next HalfEdge.