Skip to content
Snippets Groups Projects
Commit e94bb80d authored by Amaury Johnen's avatar Amaury Johnen
Browse files

missing in prec ci

parent 586fabe9
No related branches found
No related tags found
No related merge requests found
...@@ -443,7 +443,6 @@ class Rec2DEdge { ...@@ -443,7 +443,6 @@ class Rec2DEdge {
Rec2DVertex *_rv0, *_rv1; Rec2DVertex *_rv0, *_rv1;
double _qual; double _qual;
int _lastUpdate, _weight; int _lastUpdate, _weight;
int _boundary; // pourrait faire sans !
public : public :
Rec2DEdge(Rec2DVertex*, Rec2DVertex*); Rec2DEdge(Rec2DVertex*, Rec2DVertex*);
...@@ -459,11 +458,11 @@ class Rec2DEdge { ...@@ -459,11 +458,11 @@ class Rec2DEdge {
void updateQual(); void updateQual();
void print() const; void print() const;
inline void addHasTri() {_addWeight(-REC2D_EDGE_QUAD); ++_boundary;} inline void addHasTri() {_addWeight(-REC2D_EDGE_QUAD);}
inline void remHasTri() {_addWeight(REC2D_EDGE_QUAD); --_boundary;} inline void remHasTri() {_addWeight(REC2D_EDGE_QUAD);}
inline void addHasQuad() {++_boundary;} //inline void addHasQuad() {}
inline void remHasQuad() {--_boundary;} //inline void remHasQuad() {}
inline bool isOnBoundary() const {return !_boundary;} inline bool isOnBoundary() const;
inline Rec2DVertex* getVertex(int i) const {if (i) return _rv1; return _rv0;} inline Rec2DVertex* getVertex(int i) const {if (i) return _rv1; return _rv0;}
Rec2DVertex* getOtherVertex(const Rec2DVertex*) const; Rec2DVertex* getOtherVertex(const Rec2DVertex*) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment