调整threejs类型

This commit is contained in:
xiefan
2020-04-01 16:12:28 +08:00
parent 1fbd3d6563
commit a10bb71035
4 changed files with 8 additions and 8 deletions

View File

@@ -1,9 +1,9 @@
import * as THREE from 'three';
import { Vector3, Line3 } from "three";
import { Vector3, Line3, Plane } from "three";
export class PlaneExt extends THREE.Plane
export class PlaneExt extends Plane
{
constructor(normal?: THREE.Vector3, constant?: number)
constructor(normal?: Vector3, constant?: number)
{
super(normal, constant);
}