clone method

Object clone()
override

Creates and returns a full copy of this {@link Point} object. (including all coordinates contained by it).

@return a clone of this instance @deprecated

Implementation

Object clone() {
  return copy();
}