Kaynağa Gözat

Merge pull request #8299 from Jarred-Sumner/patch-2

Fix typo in Plane: "Represens" -> "Represents"
sebavan 5 yıl önce
ebeveyn
işleme
d07fc96746
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  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';
 
 /**
- * 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 {
     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);
         return Vector3.Dot(point, normal) + d;
     }
-}
+}