ji-lattice
    Preparing search index...

    Type Alias Edge3D

    An edge connecting two vertices of a 3D graph.

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

    Properties

    Properties

    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.