David Catuhe 6 年之前
父節點
當前提交
ebdcfe1985
共有 1 個文件被更改,包括 2 次插入2 次删除
  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
      */
     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;
-    /** (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;
     /** 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;