浏览代码

Comment clarification (#8523)

Co-authored-by: Guide <babylonjsguide@gmail.com>
John King 5 年之前
父节点
当前提交
5ecf603424
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/Maths/math.path.ts

+ 3 - 3
src/Maths/math.path.ts

@@ -84,9 +84,9 @@ export class Angle {
     }
 
     /**
-     * Gets a new Angle object valued with the angle value in radians between the two given vectors
-     * @param a defines first vector
-     * @param b defines second vector
+     * Gets a new Angle object valued with the gradient angle, in radians, of the line joining two points
+     * @param a defines first point as the origin
+     * @param b defines point
      * @returns a new Angle
      */
     public static BetweenTwoPoints(a: DeepImmutable<Vector2>, b: DeepImmutable<Vector2>): Angle {