@mlightcad/libredwg-web
Version:
A DWG/DXF JavaScript parser based on libredwg
29 lines • 681 B
TypeScript
import { DwgPoint3D } from '../common';
import { DwgEntity } from './entity';
export interface DwgToleranceEntity extends DwgEntity {
/**
* Entity type
*/
type: 'TOLERANCE';
/**
* Dimension style name
*/
styleName: string;
/**
* Insertion point (in WCS)
*/
insertionPoint: DwgPoint3D;
/**
* String representing the visual representation of the tolerance
*/
text: string;
/**
* Extrusion direction (optional; default = 0, 0, 1)
*/
extrusionDirection: DwgPoint3D;
/**
* X-axis direction vector (in WCS)
*/
xAxisDirection: DwgPoint3D;
}
//# sourceMappingURL=tolerance.d.ts.map