coons-patch
    Preparing search index...

    Function interpolatePointOnCurveLinearFactory

    • Factory function that returns a function for interpolating a point on a curve using the simplest possible algorithm.

      Returns (t: number, curve: Curve) => Point

      A function that takes a parameter t and a curve, and returns an interpolated point on the curve.

        • (t: number, curve: Curve): Point
        • Interpolates a point on the given curve at the specified parameter t, where t is a value between 0 and 1 inclusive.

          Parameters

          • t: number

            The parameter along the curve, typically between 0 and 1.

          • curve: Curve

            The curve on which to interpolate the point.

          Returns Point

          The interpolated point on the curve.