浏览代码

Docs: Clean up.

Mugen87 5 年之前
父节点
当前提交
2d3341945b
共有 3 个文件被更改,包括 0 次插入15 次删除
  1. 0 7
      docs/api/en/extras/core/CurvePath.html
  2. 0 7
      docs/api/zh/extras/core/CurvePath.html
  3. 0 1
      src/extras/core/CurvePath.d.ts

+ 0 - 7
docs/api/en/extras/core/CurvePath.html

@@ -59,13 +59,6 @@
 			Returns a vector for a given position on the curve path.
 			Returns a vector for a given position on the curve path.
 		</p>
 		</p>
 
 
-		<h3>[method:Vector getPointAt]( [param:Float u] )</h3>
-		<p>
-			[page:Float u] - A position on the curve according to the arc length. Must be in the range [ 0, 1 ]. <br><br />
-
-			Returns a vector for a given position on the curve path according to the arc length.
-		</p>
-
 		<h3>[method:Array getPoints]( [param:Integer divisions] )</h3>
 		<h3>[method:Array getPoints]( [param:Integer divisions] )</h3>
 		<p>
 		<p>
 			divisions -- number of pieces to divide the curve into. Default is *12*.<br /><br />
 			divisions -- number of pieces to divide the curve into. Default is *12*.<br /><br />

+ 0 - 7
docs/api/zh/extras/core/CurvePath.html

@@ -59,13 +59,6 @@
 			Returns a vector for a given position on the curve path.
 			Returns a vector for a given position on the curve path.
 		</p>
 		</p>
 
 
-		<h3>[method:Vector getPointAt]( [param:Float u] )</h3>
-		<p>
-			[page:Float u] - A position on the curve according to the arc length. Must be in the range [ 0, 1 ]. <br><br />
-
-			Returns a vector for a given position on the curve path according to the arc length.
-		</p>
-
 		<h3>[method:Array getPoints]( [param:Integer divisions] )</h3>
 		<h3>[method:Array getPoints]( [param:Integer divisions] )</h3>
 		<p>
 		<p>
 			divisions -- 曲线分段数量。默认值为*12*。<br /><br />
 			divisions -- 曲线分段数量。默认值为*12*。<br /><br />

+ 0 - 1
src/extras/core/CurvePath.d.ts

@@ -13,7 +13,6 @@ export class CurvePath<T extends Vector> extends Curve<T> {
 	checkConnection(): boolean;
 	checkConnection(): boolean;
 	closePath(): void;
 	closePath(): void;
 	getPoint( t: number ): T;
 	getPoint( t: number ): T;
-	getPointAt( t: number ): T;
 	getLength(): number;
 	getLength(): number;
 	updateArcLengths(): void;
 	updateArcLengths(): void;
 	getCurveLengths(): number[];
 	getCurveLengths(): number[];