pixi.js
    Preparing search index...

    Interface PathInstructionAdvanced

    Represents a single drawing instruction in a GraphicsPath. Each instruction consists of an action type and associated data.

    interface PathInstruction {
        action:
            | "circle"
            | "ellipse"
            | "arc"
            | "arcTo"
            | "arcToSvg"
            | "bezierCurveTo"
            | "closePath"
            | "lineTo"
            | "moveTo"
            | "quadraticCurveTo"
            | "rect"
            | "roundRect"
            | "poly"
            | "regularPoly"
            | "roundPoly"
            | "roundShape"
            | "filletRect"
            | "chamferRect"
            | "addPath";
        data: any[];
    }
    Index

    Properties

    Properties

    action:
        | "circle"
        | "ellipse"
        | "arc"
        | "arcTo"
        | "arcToSvg"
        | "bezierCurveTo"
        | "closePath"
        | "lineTo"
        | "moveTo"
        | "quadraticCurveTo"
        | "rect"
        | "roundRect"
        | "poly"
        | "regularPoly"
        | "roundPoly"
        | "roundShape"
        | "filletRect"
        | "chamferRect"
        | "addPath"
    data: any[]