Browse Source

Add projectionMatrixInverse to type definitions

Tobi995 6 years ago
parent
commit
b637382cb7
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/cameras/Camera.d.ts

+ 5 - 0
src/cameras/Camera.d.ts

@@ -23,6 +23,11 @@ export class Camera extends Object3D {
    * This is the matrix which contains the projection.
    */
 	projectionMatrix: Matrix4;
+	
+	/**
+   * This is the inverse of projectionMatrix.
+   */
+	projectionMatrixInverse: Matrix4;
 
 	isCamera: true;