ji-lattice
    Preparing search index...

    Type Alias Vertex

    A vertex of a 2D graph.

    type Vertex = {
        index?: number;
        x: number;
        y: number;
    }
    Index

    Properties

    Properties

    index?: number

    Index to input array.

    x: number

    Horizontal coordinate.

    y: number

    Vertical coordinate.