pointsInterpolation static method

Point pointsInterpolation(
  1. Point p1,
  2. Point p2,
  3. double f
)

Implementation

static Point pointsInterpolation(Point p1, Point p2, double f) {
  return p1._interpolate(p2, f);
}