修改配置

This commit is contained in:
xf
2018-05-28 09:49:45 +08:00
parent 1e40bb624f
commit 0f41ff6562
64 changed files with 3454 additions and 6902 deletions

7
dist/PlaneExt.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
import * as THREE from 'three';
import { Vector3, Line3 } from "three";
export declare class PlaneExt extends THREE.Plane {
constructor(normal?: THREE.Vector3, constant?: number);
intersectLine(line: Line3, optionalTarget?: Vector3, extendLine?: boolean): Vector3;
intersectRay(ray: THREE.Ray, optionalTarget?: Vector3, extendLine?: boolean): Vector3;
}