Copies the coordinates from another Point into this Point.
Source
void copyFrom(math.Point<T> point) { x = point.x; y = point.y; }
Copies the coordinates from another Point into this Point.
void copyFrom(math.Point<T> point) { x = point.x; y = point.y; }