11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
import { Group } from "three";
|
|
/**
|
|
* 标注实体
|
|
* @export
|
|
* @class Dimension
|
|
* @extends {Group}
|
|
*/
|
|
export declare class Dimension extends Group {
|
|
constructor(length: number, textHeight?: number, mirror?: boolean, mirrorFoot?: boolean);
|
|
}
|