Browse Source

Fix comments

David Catuhe 7 năm trước cách đây
mục cha
commit
fbb2c262bf
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  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;