ソースを参照

Fix typo in Plane: "Represens" -> "Represents"

Jarred Sumner 5 年 前
コミット
e9f31113ab
1 ファイル変更2 行追加2 行削除
  1. 2 2
      src/Maths/math.plane.ts

+ 2 - 2
src/Maths/math.plane.ts

@@ -2,7 +2,7 @@ import { DeepImmutable } from '../types';
 import { Vector3, Matrix } from './math.vector';
 import { Vector3, Matrix } from './math.vector';
 
 
 /**
 /**
- * Represens a plane by the equation ax + by + cz + d = 0
+ * Represents a plane by the equation ax + by + cz + d = 0
  */
  */
 export class Plane {
 export class Plane {
     private static _TmpMatrix = Matrix.Identity();
     private static _TmpMatrix = Matrix.Identity();
@@ -205,4 +205,4 @@ export class Plane {
         var d = -(normal.x * origin.x + normal.y * origin.y + normal.z * origin.z);
         var d = -(normal.x * origin.x + normal.y * origin.y + normal.z * origin.z);
         return Vector3.Dot(point, normal) + d;
         return Vector3.Dot(point, normal) + d;
     }
     }
-}
+}