import * as THREE from 'three'; export declare class Line { private browserInfo; constructor(); createLine(lineOption: LineOption): any; private threeLine; private meshLine; } /** * startPoint: 线条的起点 * endPoint: 线条的终点 * color: 线条的颜色(默认为黑) * lineWidth; 线宽 * dashLine; 是否为虚线(true为虚线, false为实现 默认为false) * dashSize:虚线时每段线条的长度 * gapSize:虚线时每段线条的间距 * depthTest:是否深度测试(默认为false) */ declare class LineOption { startPoint: THREE.Vector3; endPoint: THREE.Vector3; color?: any; lineWidth?: number; dashLine?: boolean; dashSize?: number; gapSize?: number; depthTest?: boolean; lineWidthScale?: number; } export {};