Subtracts two points.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public static Point operator -(
	Point left,
	Point right
)
Visual Basic (Declaration)
Public Shared Operator - ( _
	left As Point, _
	right As Point _
) As Point
Visual C++
public:
static Point^ operator -(
	Point^ left, 
	Point^ right
)

Parameters

left
Type: ceometric.VectorGeometry..::.Point
A point to subtract from.
right
Type: ceometric.VectorGeometry..::.Point
A point to subtract.

Return Value

Returns the result of the subtraction of two points (which again is a point).

Remarks

Subtracting two points means subtracting each coordinate of right from the respective coordinate of left.

See Also