void copyFrom(Point<T> point)

Copies the coordinates from another Point into this Point.

Source

void copyFrom(math.Point<T> point) {
  x = point.x;
  y = point.y;
}