소스 검색

Fix comments

David Catuhe 7 년 전
부모
커밋
fbb2c262bf
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/Cameras/babylon.camera.ts

+ 4 - 0
src/Cameras/babylon.camera.ts

@@ -557,6 +557,10 @@
             return this._projectionMatrix;
         }
 
+        /**
+         * Gets the transformation matrix (ie. the multiplication of view by projection matrices)
+         * @returns a Matrix
+         */
         public getTransformationMatrix(): Matrix {
             this._computedViewMatrix.multiplyToRef(this._projectionMatrix, this._transformMatrix);
             return this._transformMatrix;