Merge branch 'master' into select-block

This commit is contained in:
xiefan
2020-04-30 17:21:10 +08:00
75 changed files with 5897 additions and 2143 deletions

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

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