Path

Description

Represents an open or closed sequence of two-dimensional points of type Point2D.

struct Path : Array< Point2D >
{
	Path();
	Path( bool closed );
	Path( Array points, bool closed );
	Path( void* data, int count, bool closed );
	Path( Segment2D segment );
	
	void Reset();
	void Reset( const void* newData, int count, bool newClosed );
	
	bool Closed( void ) const;
	void SetClosed( bool newClosed );
	
};