unscaleBy method

Point<double> unscaleBy(
  1. Point<num> point
)

Create new Point whose x and y values are divided by the respective values in point.

Implementation

Point<double> unscaleBy(Point<num> point) {
  return Point<double>(x / point.x, y / point.y);
}