UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

16 lines (15 loc) 283 B
import { Point2D } from "../../misc"; /** * 线 */ export declare class Line { points: Point2D[]; /** 线宽 */ width: number; /** 颜色 */ color: string; /** 是否显示 */ enable: boolean; /** 构造函数 */ constructor(); }