System.Types.TPointF.operator -

From RAD Studio API Documentation
Jump to: navigation, search

C++

TPointF operator -(const TPointF& rhs) const {
TPointF operator-() const { return TPointF(-this->x, -this->y); }

Properties

Type Visibility Source Unit Parent
function public SystemTypes.h System.Types TPointF

Description

Subtracts certain values from a point's location coordinates.

operator - subtracts from a point's location the values from another point location.

See Also