OneBot: Leantime 改造版源码(BOM/Univer 表格/AI 接管/品牌替换等)
This commit is contained in:
20
dev/DWGViewer/libs/dxf-parser/entities/polyline.d.ts
vendored
Normal file
20
dev/DWGViewer/libs/dxf-parser/entities/polyline.d.ts
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import { IVertexEntity } from './vertex';
|
||||
import IGeometry, { IEntity, IPoint } from './geomtry';
|
||||
import DxfArrayScanner, { IGroup } from '../DxfArrayScanner';
|
||||
export interface IPolylineEntity extends IEntity {
|
||||
vertices: IVertexEntity[];
|
||||
thickness: number;
|
||||
shape: boolean;
|
||||
includesCurveFitVertices: boolean;
|
||||
includesSplineFitVertices: boolean;
|
||||
is3dPolyline: boolean;
|
||||
is3dPolygonMesh: boolean;
|
||||
is3dPolygonMeshClosed: boolean;
|
||||
isPolyfaceMesh: boolean;
|
||||
hasContinuousLinetypePattern: boolean;
|
||||
extrusionDirection: IPoint;
|
||||
}
|
||||
export default class Polyline implements IGeometry {
|
||||
ForEntityName: "POLYLINE";
|
||||
parseEntity(scanner: DxfArrayScanner, curr: IGroup): IPolylineEntity;
|
||||
}
|
||||
Reference in New Issue
Block a user