Interface Matrix

( interface Matrix )

Hierarchy

  • Matrix

Implemented by

Properties

copy: ((m: Matrix) => Matrix)

Type declaration

determinant: (() => number)

Type declaration

    • (): number
    • Computes and returns the determinant of this matrix.

      Returns number

elements: number[]

Array with matrix values.

identity: (() => Matrix)

Type declaration

invert: (() => Matrix)

Type declaration

isMatrix: boolean

Read-only flag to check if a given object is of type Matrix.

multiplyScalar: ((s: number) => Matrix)

Type declaration

    • (s: number): Matrix
    • multiplyScalar(s:number):T;

      Parameters

      • s: number

      Returns Matrix

transpose: (() => Matrix)

Type declaration