Documentation
    Preparing search index...

    Interface PathCommand

    CustomShape allows drawing arbitrary paths defined by a list of SVG-like commands. It is designed to be the base for application-specific shapes.

    interface PathCommand {
        args: number[];
        cmd: "M" | "L" | "C" | "Q" | "Z";
    }
    Index

    Properties

    Properties

    args: number[]
    cmd: "M" | "L" | "C" | "Q" | "Z"