simple-vector
    Preparing search index...

    Interface VectorLike

    An interface for objects with an x and a y properties. This is used by conversion methods to parse and generate objects which are not instances of the Vector class

    interface VectorLike {
        x: number;
        y: number;
    }
    Index

    Properties

    x y

    Properties

    x: number

    The value of the X axis

    y: number

    The value of the Y axis