Function coordSimplex

  • create a default CoordSimplex

    The simplex coordinate assignment operator tries to minimize edge length, while also trying to make long edges vertical. This uses an optimization that can take a long time, but is usually fast enough on moderately sized graphs.

    Parameters

    • Rest ...args: never[]

    Returns DefaultCoordSimplex

    Example

    const layout = sugiyama().coord(coordSimplex().weight([2, 2, 4]));
    

Generated using TypeDoc