pivotick - v0.0.1
    Preparing search index...

    Interface CustomNodeShape

    Represents a node with a custom SVG path. The d property corresponds directly to the d attribute of an SVG <path> element, allowing fully custom shapes.

    {
    d: "M 0 -10 L 10 10 L -10 10 Z"
    }
    interface CustomNodeShape {
        d: string;
    }
    Index

    Properties

    d

    Properties

    d: string