unscaleBy method

CustomPoint<T> unscaleBy(
  1. CustomPoint<T> point
)

Implementation

CustomPoint<T> unscaleBy(CustomPoint<T> point) {
  return CustomPoint<T>(x / point.x, y / point.y);
}