Browse Source

Merge pull request #19509 from linbingquan/dev-cleanup-ts

TS: Clean up
Mr.doob 5 years ago
parent
commit
43c8230798
1 changed files with 0 additions and 6 deletions
  1. 0 6
      src/math/Triangle.d.ts

+ 0 - 6
src/math/Triangle.d.ts

@@ -3,12 +3,6 @@ import { Vector3 } from './Vector3';
 import { Plane } from './Plane';
 import { Box3 } from './Box3';
 
-export interface SplineControlPoint {
-	x: number;
-	y: number;
-	z: number;
-}
-
 export class Triangle {
 
 	constructor( a?: Vector3, b?: Vector3, c?: Vector3 );