Constructors

Properties

Accessors

Methods

  • Applies an array of colors to the given nodes.

    Parameters

    • color: ColorHandle[]

      An array of colors to apply, corresponding to each node.

    • nodes: number[]

      The nodes to apply the colors to.

    Returns void

    Will throw an error if the lengths of the colors and nodes arrays do not match.

  • Retrieves the bounding box of the given nodes.

    Parameters

    • nodes: "all" | number[]

      The nodes to get the bounding box for.

    Returns Promise<Box3>

    A Promise that resolves to the bounding box, or undefined if not connected or nodes are empty.

    Error if 'all' is passed, as this feature is not supported yet.

  • Highlights the given nodes.

    Parameters

    • nodes: "all" | number[]

      The nodes to highlight. If 'all' is passed, all nodes will be highlighted.

    Returns void

  • Removes the highlight from the given nodes and reverts them to a fallback state.

    Parameters

    • nodes: "all" | number[]

      The nodes to remove the highlight from.

    • fallback: NodeState

      The state to revert the nodes to.

    Returns void