Defines an Object3D normal matrix object

interface Object3DNormalMatrix {
    matrix: Mat3;
    shouldUpdate: boolean;
    onUpdate: (() => void);
}

Properties

matrix: Mat3

The Mat3 matrix used

shouldUpdate: boolean

Whether we should update the Mat3 matrix

onUpdate: (() => void)

Function to update our Mat3 matrix

Type declaration

    • (): void
    • Function to update our Mat3 matrix

      Returns void