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

10
dist/Dimension.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
import { Group } from "three";
/**
* 标注实体
* @export
* @class Dimension
* @extends {Group}
*/
export declare class Dimension extends Group {
constructor(length: number, textHeight?: number, mirror?: boolean, mirrorFoot?: boolean);
}