public operator-(vect as Vector<NUMBER>) as Point<NUMBER>:
Returns a point translated in the opposite direction.
| Parameter | Description |
|---|---|
vect | Displacement removed from this point. |
A new point translated by -vect.
p = Point<Double>(4.0, 6.0) - Vector<Double>(1.0, 2.0)