未验证 提交 49fe7e86 编写于 作者: M Michael Herzog 提交者: GitHub

Merge pull request #18366 from OndrejSpanel/dtsFix

Fix Matrix3.transposeIntoArray d.ts signature
......@@ -86,7 +86,7 @@ export class Matrix3 implements Matrix {
/**
* Transposes this matrix into the supplied array r, and returns itself.
*/
transposeIntoArray( r: number[] ): number[];
transposeIntoArray( r: number[] ): Matrix3;
setUvTransform( tx: number, ty: number, sx: number, sy: number, rotation: number, cx: number, cy: number ): Matrix3;
......
......@@ -15,7 +15,7 @@ export class Ray {
clone(): this;
copy( ray: Ray ): this;
at( t: number, target: Vector3 ): Vector3;
lookAt( v: Vector3 ): Vector3;
lookAt( v: Vector3 ): Ray;
recast( t: number ): Ray;
closestPointToPoint( point: Vector3, target: Vector3 ): Vector3;
distanceToPoint( point: Vector3 ): number;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册