소스 검색

Update line.ts

Solve Travis doc generation ?
SvenFrankson 7 년 전
부모
커밋
dd70c1de25
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      gui/src/controls/line.ts

+ 3 - 2
gui/src/controls/line.ts

@@ -206,7 +206,8 @@ module BABYLON.GUI {
         }
 
         /**
-         * @param projectedPosition 
+         * Move one end of the line to a position in screen absolute space.
+         * @param projectedPosition Position in screen absolute space (X, Y)
          * @param end (opt) Set to true to assign x2 and y2 coordinates of the line. Default assign to x1 and y1.
          */
         public _moveToProjectedPosition(projectedPosition: Vector3, end: boolean = false): void {
@@ -226,4 +227,4 @@ module BABYLON.GUI {
             }
         }
     }    
-}
+}