Interface VectorPathCommandCubicBezierCurve

A cubic Bézier curve to a given point. Subtype of VectorPathCommand.

interface VectorPathCommandCubicBezierCurve {
    @type: "vectorPathCommandCubicBezierCurve";
    end_control_point: Point;
    end_point: Point;
    start_control_point: Point;
}

Properties

@type: "vectorPathCommandCubicBezierCurve"
end_control_point: Point

The end control point of the curve.

end_point: Point

The end point of the curve.

start_control_point: Point

The start control point of the curve.