interpolate method

Point<double> interpolate(
  1. Point<double> from,
  2. Point<double> to,
  3. double fraction
)

Returns the point at fraction of the way between from and to.

Implementation

Point<double> interpolate(
        Point<double> from, Point<double> to, double fraction) =>
    SphericalUtils.interpolate(from, to, fraction);