@crow281/ts-file-module-template
    Preparing search index...

    Interface Point3

    Represents a 3d coordinate in space.

    interface Point3 {
        x: number;
        y: number;
        z: number;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    x y z

    Properties

    x: number

    X coordinate of the position.

    y: number

    Y coordinate of the position.

    z: number

    Z coordinate of the position.