klyn.math.geometry.Point.operator+=
method
public operator+=(vect as Vector<NUMBER>) as Void:
Description

Translates this point in place.

Parameters
ParameterDescription
vectDisplacement applied to this point.
Example
p = Point<Double>(1.0, 2.0)
p += Vector<Double>(3.0, 4.0)