David Catuhe 6 years ago
parent
commit
ebdcfe1985
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/Collisions/pickingInfo.ts

+ 2 - 2
src/Collisions/pickingInfo.ts

@@ -30,9 +30,9 @@ export class PickingInfo {
      * The mesh corresponding the the pick collision
      * The mesh corresponding the the pick collision
      */
      */
     public pickedMesh: Nullable<AbstractMesh> = null;
     public pickedMesh: Nullable<AbstractMesh> = null;
-    /** (See getTextureCoordinates) The barycentric U coordinate that is used when calulating the texture coordinates of the collision.*/
+    /** (See getTextureCoordinates) The barycentric U coordinate that is used when calculating the texture coordinates of the collision.*/
     public bu = 0;
     public bu = 0;
-    /** (See getTextureCoordinates) The barycentric V coordinate that is used when calulating the texture coordinates of the collision.*/
+    /** (See getTextureCoordinates) The barycentric V coordinate that is used when calculating the texture coordinates of the collision.*/
     public bv = 0;
     public bv = 0;
     /** The index of the face on the mesh that was picked, or the index of the Line if the picked Mesh is a LinesMesh */
     /** The index of the face on the mesh that was picked, or the index of the Line if the picked Mesh is a LinesMesh */
     public faceId = -1;
     public faceId = -1;