brepjs API Reference
    Preparing search index...

    Interface PathNode

    interface PathNode {
        freeParams: ReadonlySet<string>;
        kind: "Path";
        segments: readonly Segment2D[];
        start: Expr;
        structuralHash: bigint;
    }

    Hierarchy

    • IRNodeBase
      • PathNode
    Index
    freeParams: ReadonlySet<string>
    kind: "Path"
    segments: readonly Segment2D[]
    start: Expr

    Vec2 start point; the path lies in the XY plane (z = 0) and is lifted into 3D by transform nodes.

    structuralHash: bigint