Fix arg type of NODE::followLine
This commit is contained in:
parent
6fce39607e
commit
c12666ec43
|
@ -862,7 +862,7 @@ void NODE::Remove( LINE& aLine )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void NODE::followLine( LINKED_ITEM* aCurrent, int aScanDirection, int& aPos, int aLimit,
|
void NODE::followLine( LINKED_ITEM* aCurrent, bool aScanDirection, int& aPos, int aLimit,
|
||||||
VECTOR2I* aCorners, LINKED_ITEM** aSegments, bool* aArcReversed,
|
VECTOR2I* aCorners, LINKED_ITEM** aSegments, bool* aArcReversed,
|
||||||
bool& aGuardHit, bool aStopAtLockedJoints )
|
bool& aGuardHit, bool aStopAtLockedJoints )
|
||||||
{
|
{
|
||||||
|
|
|
@ -431,7 +431,7 @@ private:
|
||||||
ARC* findRedundantArc( ARC* aSeg );
|
ARC* findRedundantArc( ARC* aSeg );
|
||||||
|
|
||||||
///< Scan the joint map, forming a line starting from segment (current).
|
///< Scan the joint map, forming a line starting from segment (current).
|
||||||
void followLine( LINKED_ITEM* aCurrent, int aScanDirection, int& aPos, int aLimit,
|
void followLine( LINKED_ITEM* aCurrent, bool aScanDirection, int& aPos, int aLimit,
|
||||||
VECTOR2I* aCorners, LINKED_ITEM** aSegments, bool* aArcReversed,
|
VECTOR2I* aCorners, LINKED_ITEM** aSegments, bool* aArcReversed,
|
||||||
bool& aGuardHit, bool aStopAtLockedJoints );
|
bool& aGuardHit, bool aStopAtLockedJoints );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue