Type alias Edge3D

Edge3D: {
    type: EdgeType;
    x1: number;
    x2: number;
    y1: number;
    y2: number;
    z1: number;
    z2: number;
}

An edge connecting two vertices of a 3D graph.

Type declaration

  • type: EdgeType

    Type of connection.

  • x1: number

    First horizontal coordinate.

  • x2: number

    Second horizontal coordinate.

  • y1: number

    First vertical coordinate.

  • y2: number

    Second vertical coordinate.

  • z1: number

    First depthwise coordinate.

  • z2: number

    Second depthwise coordinate.