Viewer - Drawing Tools
    Preparing search index...

    Type Alias AdjacencyEntry

    Per-axis propagation weight from one point to another in local space. When a point is dragged, its delta is multiplied component-wise by these weights before being added to the target point's position.

    type AdjacencyEntry = {
        to: number;
        weights: [number, number, number];
        space?: "local" | "world";
    }
    Index

    Properties

    Properties

    to: number
    weights: [number, number, number]
    space?: "local" | "world"

    Whether the weights are applied in the DT's plane local space (U/V/N axes) or directly to world-space delta XYZ components. Default is "world".