瀏覽代碼

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;