coons-patch
    Preparing search index...

    Interface Curve

    Represents a cubic Bezier curve in 2D space the curve's shape

    interface Curve {
        startPoint: Point;
        endPoint: Point;
        controlPoint1: Point;
        controlPoint2: Point;
    }
    Index

    Properties

    startPoint: Point
    endPoint: Point
    controlPoint1: Point
    controlPoint2: Point