OneBot: Leantime 改造版源码(BOM/Univer 表格/AI 接管/品牌替换等)
This commit is contained in:
11
dev/DWGViewer/libs/dxf-parser/entities/point.d.ts
vendored
Normal file
11
dev/DWGViewer/libs/dxf-parser/entities/point.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
import DxfArrayScanner, { IGroup } from '../DxfArrayScanner';
|
||||
import IGeometry, { IEntity, IPoint } from './geomtry';
|
||||
export interface IPointEntity extends IEntity {
|
||||
position: IPoint;
|
||||
thickness: number;
|
||||
extrusionDirection: IPoint;
|
||||
}
|
||||
export default class Point implements IGeometry {
|
||||
ForEntityName: "POINT";
|
||||
parseEntity(scanner: DxfArrayScanner, curr: IGroup): IPointEntity;
|
||||
}
|
||||
Reference in New Issue
Block a user