Variable kMatrixContainerTypeInfoConst

kMatrixContainerTypeInfo: {
    mat2x2: {
        arrayLength: 2;
        innerLength: 2;
    };
    mat2x3: {
        arrayLength: 2;
        innerLength: 3;
    };
    mat2x4: {
        arrayLength: 2;
        innerLength: 4;
    };
    mat3x2: {
        arrayLength: 3;
        innerLength: 2;
    };
    mat3x3: {
        arrayLength: 3;
        innerLength: 3;
    };
    mat3x4: {
        arrayLength: 3;
        innerLength: 4;
    };
    mat4x2: {
        arrayLength: 4;
        innerLength: 2;
    };
    mat4x3: {
        arrayLength: 4;
        innerLength: 3;
    };
    mat4x4: {
        arrayLength: 4;
        innerLength: 4;
    };
} = ...

Info for each matNxN<> container type.

Type declaration

  • Readonly mat2x2: {
        arrayLength: 2;
        innerLength: 2;
    }
    • Readonly arrayLength: 2
    • Readonly innerLength: 2
  • Readonly mat2x3: {
        arrayLength: 2;
        innerLength: 3;
    }
    • Readonly arrayLength: 2
    • Readonly innerLength: 3
  • Readonly mat2x4: {
        arrayLength: 2;
        innerLength: 4;
    }
    • Readonly arrayLength: 2
    • Readonly innerLength: 4
  • Readonly mat3x2: {
        arrayLength: 3;
        innerLength: 2;
    }
    • Readonly arrayLength: 3
    • Readonly innerLength: 2
  • Readonly mat3x3: {
        arrayLength: 3;
        innerLength: 3;
    }
    • Readonly arrayLength: 3
    • Readonly innerLength: 3
  • Readonly mat3x4: {
        arrayLength: 3;
        innerLength: 4;
    }
    • Readonly arrayLength: 3
    • Readonly innerLength: 4
  • Readonly mat4x2: {
        arrayLength: 4;
        innerLength: 2;
    }
    • Readonly arrayLength: 4
    • Readonly innerLength: 2
  • Readonly mat4x3: {
        arrayLength: 4;
        innerLength: 3;
    }
    • Readonly arrayLength: 4
    • Readonly innerLength: 3
  • Readonly mat4x4: {
        arrayLength: 4;
        innerLength: 4;
    }
    • Readonly arrayLength: 4
    • Readonly innerLength: 4

Generated using TypeDoc