SEG: added Center() method
This commit is contained in:
parent
99e79c077a
commit
168112cf84
|
@ -321,6 +321,12 @@ public:
|
||||||
std::swap( A, B );
|
std::swap( A, B );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///> Returns the center point of the line
|
||||||
|
VECTOR2I Center() const
|
||||||
|
{
|
||||||
|
return A + ( B - A ) / 2;
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool ccw( const VECTOR2I& aA, const VECTOR2I& aB, const VECTOR2I &aC ) const;
|
bool ccw( const VECTOR2I& aA, const VECTOR2I& aB, const VECTOR2I &aC ) const;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue