System.Types.TPointF.operator Subtraction

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class operator Subtract(const APoint1, APoint2: TPointF): TPointF;

Properties

Type Visibility Source Unit Parent
function public System.Types.pas System.Types TPointF

Description

Calculates the difference between two TPointF objects.

The X property of the result is the difference between the X value of the first TPointF and the value of X of the second TPointF. The Y property of the result is the difference between the Y value of the first TPointF and the value of Y of the second TPointF.

See Also