@mlightcad/graphic-interface
Version:
The graphic-interface package provides the graphics interface for controlling how AutoCAD entities are displayed on screen. This package offers a simplified API compared to AutoCAD ObjectARX's AcGi classes, making it more developer-friendly while maintain
21 lines • 620 B
TypeScript
/**
* Point style
*/
export interface AcGiPointStyle {
/**
* Point display mode. Please get more details on value of this property from [this page](https://help.autodesk.com/view/ACDLT/2022/ENU/?guid=GUID-82F9BB52-D026-4D6A-ABA6-BF29641F459B).
*/
displayMode: number;
/**
* Point display size.
* - 0: Create a point at 5 percent of the drawing area height
* - > 0: Specifie an absolute size
* - < 0: Specifie a percentage of the viewport size
*/
displaySize: number;
/**
* Point color
*/
color: number;
}
//# sourceMappingURL=AcGiPointStyle.d.ts.map