@mlightcad/cad-viewer 1.2.3 → 1.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/README.md +4 -0
  2. package/dist/app/app.d.ts.map +1 -1
  3. package/dist/app/register.d.ts.map +1 -1
  4. package/dist/command/index.d.ts +0 -1
  5. package/dist/command/index.d.ts.map +1 -1
  6. package/dist/component/MlCadViewer.vue.d.ts +1 -1
  7. package/dist/component/MlCadViewer.vue.d.ts.map +1 -1
  8. package/dist/component/common/MlBaseInputNumber.vue.d.ts +35 -0
  9. package/dist/component/common/MlBaseInputNumber.vue.d.ts.map +1 -0
  10. package/dist/component/common/index.d.ts +1 -0
  11. package/dist/component/common/index.d.ts.map +1 -1
  12. package/dist/component/index.d.ts +1 -1
  13. package/dist/component/index.d.ts.map +1 -1
  14. package/dist/component/layout/MlEntityInfo.vue.d.ts.map +1 -1
  15. package/dist/component/layout/MlLanguageSelector.vue.d.ts.map +1 -1
  16. package/dist/component/layout/MlMainMenu.vue.d.ts.map +1 -1
  17. package/dist/component/layout/index.d.ts +0 -1
  18. package/dist/component/layout/index.d.ts.map +1 -1
  19. package/dist/component/palette/MlEntityProperties.vue.d.ts +32 -0
  20. package/dist/component/palette/MlEntityProperties.vue.d.ts.map +1 -0
  21. package/dist/component/palette/MlLayerList.vue.d.ts.map +1 -0
  22. package/dist/component/{layerManager/MlLayerManager.vue.d.ts → palette/MlPaletteManager.vue.d.ts} +1 -1
  23. package/dist/component/palette/MlPaletteManager.vue.d.ts.map +1 -0
  24. package/dist/component/palette/index.d.ts +2 -0
  25. package/dist/component/palette/index.d.ts.map +1 -0
  26. package/dist/component/statusBar/MlProgress.vue.d.ts.map +1 -1
  27. package/dist/component/statusBar/MlSettingButton.vue.d.ts.map +1 -1
  28. package/dist/composable/index.d.ts +2 -0
  29. package/dist/composable/index.d.ts.map +1 -1
  30. package/dist/composable/useHover.d.ts +3260 -0
  31. package/dist/composable/useHover.d.ts.map +1 -0
  32. package/dist/composable/useLocale.d.ts +4 -3
  33. package/dist/composable/useLocale.d.ts.map +1 -1
  34. package/dist/composable/useSelectionSet.d.ts +6 -0
  35. package/dist/composable/useSelectionSet.d.ts.map +1 -0
  36. package/dist/composable/useSettings.d.ts +3 -0
  37. package/dist/composable/useSettings.d.ts.map +1 -1
  38. package/dist/index.css +1 -1
  39. package/dist/index.js +1809 -1336
  40. package/dist/locale/en/command.d.ts +0 -9
  41. package/dist/locale/en/command.d.ts.map +1 -1
  42. package/dist/locale/en/entity.d.ts +77 -0
  43. package/dist/locale/en/entity.d.ts.map +1 -1
  44. package/dist/locale/en/main.d.ts +14 -19
  45. package/dist/locale/en/main.d.ts.map +1 -1
  46. package/dist/locale/i18n.d.ts +6 -671
  47. package/dist/locale/i18n.d.ts.map +1 -1
  48. package/dist/locale/types.d.ts +2 -2
  49. package/dist/locale/types.d.ts.map +1 -1
  50. package/dist/locale/zh/command.d.ts +0 -9
  51. package/dist/locale/zh/command.d.ts.map +1 -1
  52. package/dist/locale/zh/entity.d.ts +77 -0
  53. package/dist/locale/zh/entity.d.ts.map +1 -1
  54. package/dist/locale/zh/main.d.ts +14 -19
  55. package/dist/locale/zh/main.d.ts.map +1 -1
  56. package/package.json +7 -7
  57. package/dist/command/AcApLogCmd.d.ts +0 -12
  58. package/dist/command/AcApLogCmd.d.ts.map +0 -1
  59. package/dist/component/layerManager/MlLayerList.vue.d.ts.map +0 -1
  60. package/dist/component/layerManager/MlLayerManager.vue.d.ts.map +0 -1
  61. package/dist/component/layerManager/index.d.ts +0 -2
  62. package/dist/component/layerManager/index.d.ts.map +0 -1
  63. package/dist/component/layout/MlCommandLine.vue.d.ts +0 -3
  64. package/dist/component/layout/MlCommandLine.vue.d.ts.map +0 -1
  65. /package/dist/component/{layerManager → palette}/MlLayerList.vue.d.ts +0 -0
@@ -0,0 +1,3260 @@
1
+ import { AcDbEntity, AcDbObjectId } from '@mlightcad/data-model';
2
+ /**
3
+ * Composable: useHover
4
+ *
5
+ * Tracks which CAD entity is currently hovered in the active view.
6
+ *
7
+ * This composable automatically listens to `hover` and `unhover` events
8
+ * from the `AcApDocManager.instance.curView.events` system in the CAD viewer.
9
+ * It exposes reactive state containing:
10
+ *
11
+ * - The currently hovered entity (`entity`)
12
+ * - The hovered entity’s object ID (`id`)
13
+ * - The mouse position when hovering (`mouse`)
14
+ * - A boolean indicating if an entity is hovered (`hovered`)
15
+ *
16
+ * When the component using this composable unmounts,
17
+ * all event listeners are automatically cleaned up.
18
+ *
19
+ * ---
20
+ * @example
21
+ * ```ts
22
+ * import { useHover } from '@/composables/useHover'
23
+ * import { computed } from 'vue'
24
+ * import { colorName, entityName } from '@/locale'
25
+ *
26
+ * export default {
27
+ * setup() {
28
+ * const { hovered, entity, mouse } = useHover()
29
+ *
30
+ * // Example: compute entity info for display
31
+ * const info = computed(() => {
32
+ * if (!entity.value) return null
33
+ * return {
34
+ * type: entityName(entity.value),
35
+ * color: colorName(entity.value.color.toString()),
36
+ * layer: entity.value.layer,
37
+ * lineType: entity.value.lineType
38
+ * }
39
+ * })
40
+ *
41
+ * // Example: compute tooltip position
42
+ * const tooltipStyle = computed(() => ({
43
+ * left: `${mouse.value.x + 10}px`,
44
+ * top: `${mouse.value.y + 10}px`
45
+ * }))
46
+ *
47
+ * return { hovered, info, tooltipStyle }
48
+ * }
49
+ * }
50
+ * ```
51
+ *
52
+ * ---
53
+ * @returns {{
54
+ * hovered: import('vue').Ref<boolean>;
55
+ * entity: import('vue').Ref<AcDbEntity | null>;
56
+ * id: import('vue').Ref<AcDbObjectId | null>;
57
+ * mouse: import('vue').Ref<{ x: number; y: number }>;
58
+ * }}
59
+ * Reactive state tracking the current hover context.
60
+ */
61
+ export declare function useHover(): {
62
+ hovered: import('vue').Ref<boolean, boolean>;
63
+ entity: import('vue').Ref<{
64
+ readonly type: string;
65
+ layer: string;
66
+ color: {
67
+ color: number | null;
68
+ readonly hexColor: string;
69
+ readonly cssColor: string;
70
+ readonly red: number | null;
71
+ readonly green: number | null;
72
+ readonly blue: number | null;
73
+ colorIndex: number | null;
74
+ colorName: string | null;
75
+ readonly hasColorName: boolean;
76
+ readonly hasColorIndex: boolean;
77
+ readonly isByLayer: boolean;
78
+ setByLayer: () => import('@mlightcad/data-model').AcCmColor;
79
+ readonly isByBlock: boolean;
80
+ setByBlock: () => import('@mlightcad/data-model').AcCmColor;
81
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcCmColor;
82
+ setRGB: (r: number, g: number, b: number) => import('@mlightcad/data-model').AcCmColor;
83
+ setColorName: (style: string) => import('@mlightcad/data-model').AcCmColor;
84
+ clone: () => import('@mlightcad/data-model').AcCmColor;
85
+ copy: (color: import('@mlightcad/data-model').AcCmColor) => import('@mlightcad/data-model').AcCmColor;
86
+ equals: (c: import('@mlightcad/data-model').AcCmColor) => boolean;
87
+ toString: () => string;
88
+ };
89
+ readonly rgbColor: number;
90
+ lineType: string;
91
+ lineWeight: number;
92
+ linetypeScale: number;
93
+ visibility: boolean;
94
+ transparency: number;
95
+ readonly properties: {
96
+ type: string;
97
+ groups: {
98
+ groupName: import('@mlightcad/data-model').AcDbEntityPropertyGroupName;
99
+ properties: {
100
+ accessor: {
101
+ get: () => unknown;
102
+ set?: ((value: unknown) => void) | undefined;
103
+ };
104
+ name: string;
105
+ type: import('@mlightcad/data-model').AcDbEntityPropertyType;
106
+ options?: {
107
+ label: string;
108
+ value: unknown;
109
+ }[] | undefined;
110
+ editable?: boolean | undefined;
111
+ }[];
112
+ }[];
113
+ };
114
+ subGetGripPoints: () => import('@mlightcad/data-model').AcGePoint3d[];
115
+ subGetOsnapPoints: (osnapMode: import('@mlightcad/data-model').AcDbOsnapMode, pickPoint: AcGePoint3dLike, lastPoint: AcGePoint3dLike, snapPoints: import('@mlightcad/data-model').AcGePoint3d[]) => void;
116
+ transformBy: (matrix: import('@mlightcad/data-model').AcGeMatrix3d) => AcDbEntity;
117
+ readonly geometricExtents: {
118
+ min: {
119
+ x: number;
120
+ y: number;
121
+ z: number;
122
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
123
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
124
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
125
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
126
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
127
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
128
+ getComponent: (index: number) => number;
129
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
130
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
131
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
132
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
133
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
134
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
135
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
136
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
137
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
138
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
139
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
140
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
141
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
142
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
143
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
144
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
145
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
146
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
147
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
148
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
149
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
150
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
151
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
152
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
153
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
154
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
155
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
156
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
157
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
158
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
159
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
160
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
161
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
162
+ lengthSq: () => number;
163
+ length: () => number;
164
+ manhattanLength: () => number;
165
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
166
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
167
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
168
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
169
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
170
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
171
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
172
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
173
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
174
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
175
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
176
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
177
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
178
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
179
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
180
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
181
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
182
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
183
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
184
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
185
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
186
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
187
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
188
+ };
189
+ max: {
190
+ x: number;
191
+ y: number;
192
+ z: number;
193
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
194
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
195
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
196
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
197
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
198
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
199
+ getComponent: (index: number) => number;
200
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
201
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
202
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
203
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
204
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
205
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
206
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
207
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
208
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
209
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
210
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
211
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
212
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
213
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
214
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
215
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
216
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
217
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
218
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
219
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
220
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
221
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
222
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
223
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
224
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
225
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
226
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
227
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
228
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
229
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
230
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
231
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
232
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
233
+ lengthSq: () => number;
234
+ length: () => number;
235
+ manhattanLength: () => number;
236
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
237
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
238
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
239
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
240
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
241
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
242
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
243
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
244
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
245
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
246
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
247
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
248
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
249
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
250
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
251
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
252
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
253
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
254
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
255
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
256
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
257
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
258
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
259
+ };
260
+ set: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
261
+ setFromArray: (array: number[]) => import('@mlightcad/data-model').AcGeBox3d;
262
+ setFromPoints: (points: import('@mlightcad/data-model').AcGeVector3dLike[]) => import('@mlightcad/data-model').AcGeBox3d;
263
+ setFromCenterAndSize: (center: import('@mlightcad/data-model').AcGeVector3dLike, size: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
264
+ clone: () => import('@mlightcad/data-model').AcGeBox3d;
265
+ copy: (box: import('@mlightcad/data-model').AcGeBox3d) => import('@mlightcad/data-model').AcGeBox3d;
266
+ makeEmpty: () => import('@mlightcad/data-model').AcGeBox3d;
267
+ isEmpty: () => boolean;
268
+ getCenter: (target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
269
+ getSize: (target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
270
+ readonly center: {
271
+ x: number;
272
+ y: number;
273
+ z: number;
274
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
275
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
276
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
277
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
278
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
279
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
280
+ getComponent: (index: number) => number;
281
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
282
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
283
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
284
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
285
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
286
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
287
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
288
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
289
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
290
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
291
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
292
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
293
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
294
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
295
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
296
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
297
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
298
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
299
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
300
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
301
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
302
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
303
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
304
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
305
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
306
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
307
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
308
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
309
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
310
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
311
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
312
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
313
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
314
+ lengthSq: () => number;
315
+ length: () => number;
316
+ manhattanLength: () => number;
317
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
318
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
319
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
320
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
321
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
322
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
323
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
324
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
325
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
326
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
327
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
328
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
329
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
330
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
331
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
332
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
333
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
334
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
335
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
336
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
337
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
338
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
339
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
340
+ };
341
+ readonly size: {
342
+ x: number;
343
+ y: number;
344
+ z: number;
345
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
346
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
347
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
348
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
349
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
350
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
351
+ getComponent: (index: number) => number;
352
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
353
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
354
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
355
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
356
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
357
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
358
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
359
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
360
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
361
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
362
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
363
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
364
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
365
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
366
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
367
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
368
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
369
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
370
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
371
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
372
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
373
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
374
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
375
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
376
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
377
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
378
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
379
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
380
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
381
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
382
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
383
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
384
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
385
+ lengthSq: () => number;
386
+ length: () => number;
387
+ manhattanLength: () => number;
388
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
389
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
390
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
391
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
392
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
393
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
394
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
395
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
396
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
397
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
398
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
399
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
400
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
401
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
402
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
403
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
404
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
405
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
406
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
407
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
408
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
409
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
410
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
411
+ };
412
+ expandByPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
413
+ expandByVector: (vector: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
414
+ expandByScalar: (scalar: number) => import('@mlightcad/data-model').AcGeBox3d;
415
+ containsPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
416
+ containsBox: (box: import('@mlightcad/data-model').AcGeBox3d) => boolean;
417
+ getParameter: (point: import('@mlightcad/data-model').AcGeVector3dLike, target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
418
+ intersectsBox: (box: import('@mlightcad/data-model').AcGeBox3d) => boolean;
419
+ intersectsPlane: (plane: import('@mlightcad/data-model').AcGePlane) => boolean;
420
+ clampPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike, target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
421
+ distanceToPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike) => number;
422
+ intersect: (box: import('@mlightcad/data-model').AcGeBox3d) => import('@mlightcad/data-model').AcGeBox3d;
423
+ union: (box: import('@mlightcad/data-model').AcGeBox3d) => import('@mlightcad/data-model').AcGeBox3d;
424
+ applyMatrix4: (matrix: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeBox3d;
425
+ translate: (offset: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
426
+ equals: (box: import('@mlightcad/data-model').AcGeBox3d) => boolean;
427
+ };
428
+ draw: (renderer: import('@mlightcad/data-model').AcGiRenderer, delay?: boolean) => import('@mlightcad/data-model').AcGiEntity | undefined;
429
+ triggerModifiedEvent: () => void;
430
+ readonly attrs: {
431
+ attributes: {
432
+ [x: string]: any;
433
+ objectId?: AcDbObjectId | undefined;
434
+ ownerId?: AcDbObjectId | undefined;
435
+ };
436
+ changed: {
437
+ [x: string]: any;
438
+ objectId?: AcDbObjectId | undefined;
439
+ ownerId?: AcDbObjectId | undefined;
440
+ };
441
+ readonly events: {
442
+ attrChanged: {
443
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
444
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
445
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
446
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
447
+ };
448
+ modelChanged: {
449
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
450
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
451
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
452
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
453
+ };
454
+ };
455
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
456
+ set: {
457
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
458
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
459
+ };
460
+ has: (key: string) => boolean;
461
+ hasChanged: (key?: string | undefined) => boolean;
462
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
463
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
464
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
465
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
466
+ };
467
+ getAttr: (attrName: string) => any;
468
+ getAttrWithoutException: (attrName: string) => any;
469
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
470
+ objectId: AcDbObjectId;
471
+ ownerId: AcDbObjectId;
472
+ database: {
473
+ readonly events: {
474
+ dictObjetSet: {
475
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
476
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
477
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
478
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbDictObjectEventArgs | undefined, ...args: unknown[]) => void;
479
+ };
480
+ dictObjectErased: {
481
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
482
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
483
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
484
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbDictObjectEventArgs | undefined, ...args: unknown[]) => void;
485
+ };
486
+ entityAppended: {
487
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbEntityEventArgs) => void) => void;
488
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbEntityEventArgs) => void) => void;
489
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbEntityEventArgs) => void) => void;
490
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbEntityEventArgs | undefined, ...args: unknown[]) => void;
491
+ };
492
+ entityModified: {
493
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbEntityEventArgs) => void) => void;
494
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbEntityEventArgs) => void) => void;
495
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbEntityEventArgs) => void) => void;
496
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbEntityEventArgs | undefined, ...args: unknown[]) => void;
497
+ };
498
+ layerAppended: {
499
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerEventArgs) => void) => void;
500
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerEventArgs) => void) => void;
501
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerEventArgs) => void) => void;
502
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbLayerEventArgs | undefined, ...args: unknown[]) => void;
503
+ };
504
+ layerModified: {
505
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerModifiedEventArgs) => void) => void;
506
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerModifiedEventArgs) => void) => void;
507
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerModifiedEventArgs) => void) => void;
508
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbLayerModifiedEventArgs | undefined, ...args: unknown[]) => void;
509
+ };
510
+ layerErased: {
511
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerEventArgs) => void) => void;
512
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerEventArgs) => void) => void;
513
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerEventArgs) => void) => void;
514
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbLayerEventArgs | undefined, ...args: unknown[]) => void;
515
+ };
516
+ openProgress: {
517
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbProgressdEventArgs) => void) => void;
518
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbProgressdEventArgs) => void) => void;
519
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbProgressdEventArgs) => void) => void;
520
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbProgressdEventArgs | undefined, ...args: unknown[]) => void;
521
+ };
522
+ headerSysVarChanged: {
523
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbHeaderSysVarEventArgs) => void) => void;
524
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbHeaderSysVarEventArgs) => void) => void;
525
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbHeaderSysVarEventArgs) => void) => void;
526
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbHeaderSysVarEventArgs | undefined, ...args: unknown[]) => void;
527
+ };
528
+ };
529
+ readonly tables: {
530
+ readonly blockTable: {
531
+ readonly modelSpace: {
532
+ readonly isModelSapce: boolean;
533
+ readonly isPaperSapce: boolean;
534
+ origin: {
535
+ x: number;
536
+ y: number;
537
+ z: number;
538
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGePoint3d;
539
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
540
+ setX: (x: number) => import('@mlightcad/data-model').AcGePoint3d;
541
+ setY: (y: number) => import('@mlightcad/data-model').AcGePoint3d;
542
+ setZ: (z: number) => import('@mlightcad/data-model').AcGePoint3d;
543
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGePoint3d;
544
+ getComponent: (index: number) => number;
545
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
546
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
547
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
548
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
549
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
550
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGePoint3d;
551
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
552
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
553
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
554
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
555
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
556
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
557
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGePoint3d;
558
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGePoint3d;
559
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
560
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
561
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
562
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGePoint3d;
563
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
564
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
565
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
566
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
567
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
568
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
569
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGePoint3d;
570
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGePoint3d;
571
+ floor: () => import('@mlightcad/data-model').AcGePoint3d;
572
+ ceil: () => import('@mlightcad/data-model').AcGePoint3d;
573
+ round: () => import('@mlightcad/data-model').AcGePoint3d;
574
+ roundToZero: () => import('@mlightcad/data-model').AcGePoint3d;
575
+ negate: () => import('@mlightcad/data-model').AcGePoint3d;
576
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
577
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
578
+ lengthSq: () => number;
579
+ length: () => number;
580
+ manhattanLength: () => number;
581
+ normalize: () => import('@mlightcad/data-model').AcGePoint3d;
582
+ setLength: (l: number) => import('@mlightcad/data-model').AcGePoint3d;
583
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
584
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
585
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
586
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
587
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
588
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
589
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
590
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
591
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
592
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
593
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
594
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
595
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
596
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
597
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
598
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
599
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGePoint3d;
600
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
601
+ random: () => import('@mlightcad/data-model').AcGePoint3d;
602
+ randomDirection: () => import('@mlightcad/data-model').AcGePoint3d;
603
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
604
+ };
605
+ layoutId: AcDbObjectId;
606
+ appendEntity: (entity: AcDbEntity | AcDbEntity[]) => void;
607
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<AcDbEntity>;
608
+ getIdAt: (id: string) => AcDbEntity | undefined;
609
+ name: string;
610
+ readonly attrs: {
611
+ attributes: {
612
+ [x: string]: any;
613
+ name?: string | undefined;
614
+ objectId?: AcDbObjectId | undefined;
615
+ ownerId?: AcDbObjectId | undefined;
616
+ };
617
+ changed: {
618
+ [x: string]: any;
619
+ name?: string | undefined;
620
+ objectId?: AcDbObjectId | undefined;
621
+ ownerId?: AcDbObjectId | undefined;
622
+ };
623
+ readonly events: {
624
+ attrChanged: {
625
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
626
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
627
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
628
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs> | undefined, ...args: unknown[]) => void;
629
+ };
630
+ modelChanged: {
631
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
632
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
633
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
634
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs> | undefined, ...args: unknown[]) => void;
635
+ };
636
+ };
637
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined;
638
+ set: {
639
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
640
+ (key: Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
641
+ };
642
+ has: (key: string) => boolean;
643
+ hasChanged: (key?: string | undefined) => boolean;
644
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
645
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | null | undefined;
646
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
647
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
648
+ };
649
+ getAttr: (attrName: string) => any;
650
+ getAttrWithoutException: (attrName: string) => any;
651
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined) => void;
652
+ objectId: AcDbObjectId;
653
+ ownerId: AcDbObjectId;
654
+ database: /*elided*/ any;
655
+ close: () => void;
656
+ };
657
+ readonly numEntries: number;
658
+ add: (record: import('@mlightcad/data-model').AcDbBlockTableRecord) => void;
659
+ remove: (name: string) => boolean;
660
+ removeId: (id: AcDbObjectId) => boolean;
661
+ removeAll: () => void;
662
+ has: (name: string) => boolean;
663
+ hasId: (id: string) => boolean;
664
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
665
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
666
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
667
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbBlockTableRecord>;
668
+ readonly attrs: {
669
+ attributes: {
670
+ [x: string]: any;
671
+ objectId?: AcDbObjectId | undefined;
672
+ ownerId?: AcDbObjectId | undefined;
673
+ };
674
+ changed: {
675
+ [x: string]: any;
676
+ objectId?: AcDbObjectId | undefined;
677
+ ownerId?: AcDbObjectId | undefined;
678
+ };
679
+ readonly events: {
680
+ attrChanged: {
681
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
682
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
683
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
684
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
685
+ };
686
+ modelChanged: {
687
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
688
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
689
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
690
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
691
+ };
692
+ };
693
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
694
+ set: {
695
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
696
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
697
+ };
698
+ has: (key: string) => boolean;
699
+ hasChanged: (key?: string | undefined) => boolean;
700
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
701
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
702
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
703
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
704
+ };
705
+ getAttr: (attrName: string) => any;
706
+ getAttrWithoutException: (attrName: string) => any;
707
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
708
+ objectId: AcDbObjectId;
709
+ ownerId: AcDbObjectId;
710
+ database: /*elided*/ any;
711
+ close: () => void;
712
+ };
713
+ readonly dimStyleTable: {
714
+ readonly numEntries: number;
715
+ add: (record: import('@mlightcad/data-model').AcDbDimStyleTableRecord) => void;
716
+ remove: (name: string) => boolean;
717
+ removeId: (id: AcDbObjectId) => boolean;
718
+ removeAll: () => void;
719
+ has: (name: string) => boolean;
720
+ hasId: (id: string) => boolean;
721
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
722
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
723
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
724
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbDimStyleTableRecord>;
725
+ readonly attrs: {
726
+ attributes: {
727
+ [x: string]: any;
728
+ objectId?: AcDbObjectId | undefined;
729
+ ownerId?: AcDbObjectId | undefined;
730
+ };
731
+ changed: {
732
+ [x: string]: any;
733
+ objectId?: AcDbObjectId | undefined;
734
+ ownerId?: AcDbObjectId | undefined;
735
+ };
736
+ readonly events: {
737
+ attrChanged: {
738
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
739
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
740
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
741
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
742
+ };
743
+ modelChanged: {
744
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
745
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
746
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
747
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
748
+ };
749
+ };
750
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
751
+ set: {
752
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
753
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
754
+ };
755
+ has: (key: string) => boolean;
756
+ hasChanged: (key?: string | undefined) => boolean;
757
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
758
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
759
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
760
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
761
+ };
762
+ getAttr: (attrName: string) => any;
763
+ getAttrWithoutException: (attrName: string) => any;
764
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
765
+ objectId: AcDbObjectId;
766
+ ownerId: AcDbObjectId;
767
+ database: /*elided*/ any;
768
+ close: () => void;
769
+ };
770
+ readonly linetypeTable: {
771
+ readonly numEntries: number;
772
+ add: (record: import('@mlightcad/data-model').AcDbLinetypeTableRecord) => void;
773
+ remove: (name: string) => boolean;
774
+ removeId: (id: AcDbObjectId) => boolean;
775
+ removeAll: () => void;
776
+ has: (name: string) => boolean;
777
+ hasId: (id: string) => boolean;
778
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
779
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
780
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
781
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLinetypeTableRecord>;
782
+ readonly attrs: {
783
+ attributes: {
784
+ [x: string]: any;
785
+ objectId?: AcDbObjectId | undefined;
786
+ ownerId?: AcDbObjectId | undefined;
787
+ };
788
+ changed: {
789
+ [x: string]: any;
790
+ objectId?: AcDbObjectId | undefined;
791
+ ownerId?: AcDbObjectId | undefined;
792
+ };
793
+ readonly events: {
794
+ attrChanged: {
795
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
796
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
797
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
798
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
799
+ };
800
+ modelChanged: {
801
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
802
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
803
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
804
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
805
+ };
806
+ };
807
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
808
+ set: {
809
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
810
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
811
+ };
812
+ has: (key: string) => boolean;
813
+ hasChanged: (key?: string | undefined) => boolean;
814
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
815
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
816
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
817
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
818
+ };
819
+ getAttr: (attrName: string) => any;
820
+ getAttrWithoutException: (attrName: string) => any;
821
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
822
+ objectId: AcDbObjectId;
823
+ ownerId: AcDbObjectId;
824
+ database: /*elided*/ any;
825
+ close: () => void;
826
+ };
827
+ readonly textStyleTable: {
828
+ readonly fonts: string[];
829
+ readonly numEntries: number;
830
+ add: (record: import('@mlightcad/data-model').AcDbTextStyleTableRecord) => void;
831
+ remove: (name: string) => boolean;
832
+ removeId: (id: AcDbObjectId) => boolean;
833
+ removeAll: () => void;
834
+ has: (name: string) => boolean;
835
+ hasId: (id: string) => boolean;
836
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
837
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
838
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
839
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbTextStyleTableRecord>;
840
+ readonly attrs: {
841
+ attributes: {
842
+ [x: string]: any;
843
+ objectId?: AcDbObjectId | undefined;
844
+ ownerId?: AcDbObjectId | undefined;
845
+ };
846
+ changed: {
847
+ [x: string]: any;
848
+ objectId?: AcDbObjectId | undefined;
849
+ ownerId?: AcDbObjectId | undefined;
850
+ };
851
+ readonly events: {
852
+ attrChanged: {
853
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
854
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
855
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
856
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
857
+ };
858
+ modelChanged: {
859
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
860
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
861
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
862
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
863
+ };
864
+ };
865
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
866
+ set: {
867
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
868
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
869
+ };
870
+ has: (key: string) => boolean;
871
+ hasChanged: (key?: string | undefined) => boolean;
872
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
873
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
874
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
875
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
876
+ };
877
+ getAttr: (attrName: string) => any;
878
+ getAttrWithoutException: (attrName: string) => any;
879
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
880
+ objectId: AcDbObjectId;
881
+ ownerId: AcDbObjectId;
882
+ database: /*elided*/ any;
883
+ close: () => void;
884
+ };
885
+ readonly layerTable: {
886
+ add: (record: import('@mlightcad/data-model').AcDbLayerTableRecord) => void;
887
+ readonly numEntries: number;
888
+ remove: (name: string) => boolean;
889
+ removeId: (id: AcDbObjectId) => boolean;
890
+ removeAll: () => void;
891
+ has: (name: string) => boolean;
892
+ hasId: (id: string) => boolean;
893
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
894
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
895
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
896
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLayerTableRecord>;
897
+ readonly attrs: {
898
+ attributes: {
899
+ [x: string]: any;
900
+ objectId?: AcDbObjectId | undefined;
901
+ ownerId?: AcDbObjectId | undefined;
902
+ };
903
+ changed: {
904
+ [x: string]: any;
905
+ objectId?: AcDbObjectId | undefined;
906
+ ownerId?: AcDbObjectId | undefined;
907
+ };
908
+ readonly events: {
909
+ attrChanged: {
910
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
911
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
912
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
913
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
914
+ };
915
+ modelChanged: {
916
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
917
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
918
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
919
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
920
+ };
921
+ };
922
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
923
+ set: {
924
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
925
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
926
+ };
927
+ has: (key: string) => boolean;
928
+ hasChanged: (key?: string | undefined) => boolean;
929
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
930
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
931
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
932
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
933
+ };
934
+ getAttr: (attrName: string) => any;
935
+ getAttrWithoutException: (attrName: string) => any;
936
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
937
+ objectId: AcDbObjectId;
938
+ ownerId: AcDbObjectId;
939
+ database: /*elided*/ any;
940
+ close: () => void;
941
+ };
942
+ readonly viewportTable: {
943
+ readonly numEntries: number;
944
+ add: (record: import('@mlightcad/data-model').AcDbViewportTableRecord) => void;
945
+ remove: (name: string) => boolean;
946
+ removeId: (id: AcDbObjectId) => boolean;
947
+ removeAll: () => void;
948
+ has: (name: string) => boolean;
949
+ hasId: (id: string) => boolean;
950
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
951
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
952
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
953
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewportTableRecord>;
954
+ readonly attrs: {
955
+ attributes: {
956
+ [x: string]: any;
957
+ objectId?: AcDbObjectId | undefined;
958
+ ownerId?: AcDbObjectId | undefined;
959
+ };
960
+ changed: {
961
+ [x: string]: any;
962
+ objectId?: AcDbObjectId | undefined;
963
+ ownerId?: AcDbObjectId | undefined;
964
+ };
965
+ readonly events: {
966
+ attrChanged: {
967
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
968
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
969
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
970
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
971
+ };
972
+ modelChanged: {
973
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
974
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
975
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
976
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
977
+ };
978
+ };
979
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
980
+ set: {
981
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
982
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
983
+ };
984
+ has: (key: string) => boolean;
985
+ hasChanged: (key?: string | undefined) => boolean;
986
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
987
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
988
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
989
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
990
+ };
991
+ getAttr: (attrName: string) => any;
992
+ getAttrWithoutException: (attrName: string) => any;
993
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
994
+ objectId: AcDbObjectId;
995
+ ownerId: AcDbObjectId;
996
+ database: /*elided*/ any;
997
+ close: () => void;
998
+ };
999
+ };
1000
+ readonly dictionaries: {
1001
+ readonly layouts: {
1002
+ getBtrIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayout | undefined;
1003
+ readonly maxTabOrder: number;
1004
+ readonly numEntries: number;
1005
+ setAt: (key: string, value: import('@mlightcad/data-model').AcDbLayout) => void;
1006
+ remove: (name: string) => boolean;
1007
+ removeId: (id: string) => boolean;
1008
+ removeAll: () => void;
1009
+ has: (name: string) => boolean;
1010
+ hasId: (id: string) => boolean;
1011
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbLayout | undefined;
1012
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayout | undefined;
1013
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLayout>;
1014
+ readonly attrs: {
1015
+ attributes: {
1016
+ [x: string]: any;
1017
+ objectId?: AcDbObjectId | undefined;
1018
+ ownerId?: AcDbObjectId | undefined;
1019
+ };
1020
+ changed: {
1021
+ [x: string]: any;
1022
+ objectId?: AcDbObjectId | undefined;
1023
+ ownerId?: AcDbObjectId | undefined;
1024
+ };
1025
+ readonly events: {
1026
+ attrChanged: {
1027
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1028
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1029
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1030
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
1031
+ };
1032
+ modelChanged: {
1033
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1034
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1035
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1036
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
1037
+ };
1038
+ };
1039
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
1040
+ set: {
1041
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1042
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1043
+ };
1044
+ has: (key: string) => boolean;
1045
+ hasChanged: (key?: string | undefined) => boolean;
1046
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
1047
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
1048
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
1049
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1050
+ };
1051
+ getAttr: (attrName: string) => any;
1052
+ getAttrWithoutException: (attrName: string) => any;
1053
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
1054
+ objectId: AcDbObjectId;
1055
+ ownerId: AcDbObjectId;
1056
+ database: /*elided*/ any;
1057
+ close: () => void;
1058
+ };
1059
+ readonly imageDefs: {
1060
+ readonly numEntries: number;
1061
+ setAt: (key: string, value: import('@mlightcad/data-model').AcDbRasterImageDef) => void;
1062
+ remove: (name: string) => boolean;
1063
+ removeId: (id: string) => boolean;
1064
+ removeAll: () => void;
1065
+ has: (name: string) => boolean;
1066
+ hasId: (id: string) => boolean;
1067
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
1068
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
1069
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRasterImageDef>;
1070
+ readonly attrs: {
1071
+ attributes: {
1072
+ [x: string]: any;
1073
+ objectId?: AcDbObjectId | undefined;
1074
+ ownerId?: AcDbObjectId | undefined;
1075
+ };
1076
+ changed: {
1077
+ [x: string]: any;
1078
+ objectId?: AcDbObjectId | undefined;
1079
+ ownerId?: AcDbObjectId | undefined;
1080
+ };
1081
+ readonly events: {
1082
+ attrChanged: {
1083
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1084
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1085
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1086
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
1087
+ };
1088
+ modelChanged: {
1089
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1090
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1091
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1092
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
1093
+ };
1094
+ };
1095
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
1096
+ set: {
1097
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1098
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1099
+ };
1100
+ has: (key: string) => boolean;
1101
+ hasChanged: (key?: string | undefined) => boolean;
1102
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
1103
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
1104
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
1105
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1106
+ };
1107
+ getAttr: (attrName: string) => any;
1108
+ getAttrWithoutException: (attrName: string) => any;
1109
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
1110
+ objectId: AcDbObjectId;
1111
+ ownerId: AcDbObjectId;
1112
+ database: /*elided*/ any;
1113
+ close: () => void;
1114
+ };
1115
+ };
1116
+ currentSpaceId: AcDbObjectId;
1117
+ aunits: number;
1118
+ version: {
1119
+ name: string;
1120
+ value: number;
1121
+ };
1122
+ insunits: number;
1123
+ ltscale: number;
1124
+ cecolor: {
1125
+ color: number | null;
1126
+ readonly hexColor: string;
1127
+ readonly cssColor: string;
1128
+ readonly red: number | null;
1129
+ readonly green: number | null;
1130
+ readonly blue: number | null;
1131
+ colorIndex: number | null;
1132
+ colorName: string | null;
1133
+ readonly hasColorName: boolean;
1134
+ readonly hasColorIndex: boolean;
1135
+ readonly isByLayer: boolean;
1136
+ setByLayer: () => import('@mlightcad/data-model').AcCmColor;
1137
+ readonly isByBlock: boolean;
1138
+ setByBlock: () => import('@mlightcad/data-model').AcCmColor;
1139
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcCmColor;
1140
+ setRGB: (r: number, g: number, b: number) => import('@mlightcad/data-model').AcCmColor;
1141
+ setColorName: (style: string) => import('@mlightcad/data-model').AcCmColor;
1142
+ clone: () => import('@mlightcad/data-model').AcCmColor;
1143
+ copy: (color: import('@mlightcad/data-model').AcCmColor) => import('@mlightcad/data-model').AcCmColor;
1144
+ equals: (c: import('@mlightcad/data-model').AcCmColor) => boolean;
1145
+ toString: () => string;
1146
+ };
1147
+ celtscale: number;
1148
+ angBase: number;
1149
+ angDir: number;
1150
+ extmax: {
1151
+ x: number;
1152
+ y: number;
1153
+ z: number;
1154
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGePoint3d;
1155
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
1156
+ setX: (x: number) => import('@mlightcad/data-model').AcGePoint3d;
1157
+ setY: (y: number) => import('@mlightcad/data-model').AcGePoint3d;
1158
+ setZ: (z: number) => import('@mlightcad/data-model').AcGePoint3d;
1159
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGePoint3d;
1160
+ getComponent: (index: number) => number;
1161
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
1162
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
1163
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
1164
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
1165
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1166
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGePoint3d;
1167
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1168
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
1169
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1170
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1171
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
1172
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1173
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGePoint3d;
1174
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGePoint3d;
1175
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
1176
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
1177
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
1178
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGePoint3d;
1179
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
1180
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1181
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
1182
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1183
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1184
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1185
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGePoint3d;
1186
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGePoint3d;
1187
+ floor: () => import('@mlightcad/data-model').AcGePoint3d;
1188
+ ceil: () => import('@mlightcad/data-model').AcGePoint3d;
1189
+ round: () => import('@mlightcad/data-model').AcGePoint3d;
1190
+ roundToZero: () => import('@mlightcad/data-model').AcGePoint3d;
1191
+ negate: () => import('@mlightcad/data-model').AcGePoint3d;
1192
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1193
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
1194
+ lengthSq: () => number;
1195
+ length: () => number;
1196
+ manhattanLength: () => number;
1197
+ normalize: () => import('@mlightcad/data-model').AcGePoint3d;
1198
+ setLength: (l: number) => import('@mlightcad/data-model').AcGePoint3d;
1199
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
1200
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
1201
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1202
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1203
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
1204
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
1205
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1206
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
1207
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1208
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1209
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1210
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
1211
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
1212
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
1213
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
1214
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
1215
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGePoint3d;
1216
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
1217
+ random: () => import('@mlightcad/data-model').AcGePoint3d;
1218
+ randomDirection: () => import('@mlightcad/data-model').AcGePoint3d;
1219
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
1220
+ };
1221
+ extmin: {
1222
+ x: number;
1223
+ y: number;
1224
+ z: number;
1225
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGePoint3d;
1226
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
1227
+ setX: (x: number) => import('@mlightcad/data-model').AcGePoint3d;
1228
+ setY: (y: number) => import('@mlightcad/data-model').AcGePoint3d;
1229
+ setZ: (z: number) => import('@mlightcad/data-model').AcGePoint3d;
1230
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGePoint3d;
1231
+ getComponent: (index: number) => number;
1232
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
1233
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
1234
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
1235
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
1236
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1237
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGePoint3d;
1238
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1239
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
1240
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1241
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1242
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
1243
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1244
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGePoint3d;
1245
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGePoint3d;
1246
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
1247
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
1248
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
1249
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGePoint3d;
1250
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
1251
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1252
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
1253
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1254
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1255
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1256
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGePoint3d;
1257
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGePoint3d;
1258
+ floor: () => import('@mlightcad/data-model').AcGePoint3d;
1259
+ ceil: () => import('@mlightcad/data-model').AcGePoint3d;
1260
+ round: () => import('@mlightcad/data-model').AcGePoint3d;
1261
+ roundToZero: () => import('@mlightcad/data-model').AcGePoint3d;
1262
+ negate: () => import('@mlightcad/data-model').AcGePoint3d;
1263
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1264
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
1265
+ lengthSq: () => number;
1266
+ length: () => number;
1267
+ manhattanLength: () => number;
1268
+ normalize: () => import('@mlightcad/data-model').AcGePoint3d;
1269
+ setLength: (l: number) => import('@mlightcad/data-model').AcGePoint3d;
1270
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
1271
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
1272
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1273
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1274
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
1275
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
1276
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
1277
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
1278
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1279
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1280
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1281
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
1282
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
1283
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
1284
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
1285
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
1286
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGePoint3d;
1287
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
1288
+ random: () => import('@mlightcad/data-model').AcGePoint3d;
1289
+ randomDirection: () => import('@mlightcad/data-model').AcGePoint3d;
1290
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
1291
+ };
1292
+ readonly extents: {
1293
+ min: {
1294
+ x: number;
1295
+ y: number;
1296
+ z: number;
1297
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
1298
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1299
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
1300
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
1301
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
1302
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
1303
+ getComponent: (index: number) => number;
1304
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
1305
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1306
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1307
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1308
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1309
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
1310
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1311
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1312
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1313
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1314
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1315
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1316
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
1317
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
1318
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1319
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1320
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1321
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
1322
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1323
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1324
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1325
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1326
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1327
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1328
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
1329
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
1330
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
1331
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
1332
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
1333
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
1334
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
1335
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1336
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
1337
+ lengthSq: () => number;
1338
+ length: () => number;
1339
+ manhattanLength: () => number;
1340
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
1341
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
1342
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1343
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1344
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1345
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1346
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1347
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1348
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1349
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
1350
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1351
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1352
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1353
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1354
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1355
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1356
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1357
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
1358
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
1359
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
1360
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
1361
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
1362
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
1363
+ };
1364
+ max: {
1365
+ x: number;
1366
+ y: number;
1367
+ z: number;
1368
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
1369
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1370
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
1371
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
1372
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
1373
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
1374
+ getComponent: (index: number) => number;
1375
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
1376
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1377
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1378
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1379
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1380
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
1381
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1382
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1383
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1384
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1385
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1386
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1387
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
1388
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
1389
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1390
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1391
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1392
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
1393
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1394
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1395
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1396
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1397
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1398
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1399
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
1400
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
1401
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
1402
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
1403
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
1404
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
1405
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
1406
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1407
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
1408
+ lengthSq: () => number;
1409
+ length: () => number;
1410
+ manhattanLength: () => number;
1411
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
1412
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
1413
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1414
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1415
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1416
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1417
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1418
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1419
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1420
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
1421
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1422
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1423
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1424
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1425
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1426
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1427
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1428
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
1429
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
1430
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
1431
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
1432
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
1433
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
1434
+ };
1435
+ set: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
1436
+ setFromArray: (array: number[]) => import('@mlightcad/data-model').AcGeBox3d;
1437
+ setFromPoints: (points: import('@mlightcad/data-model').AcGeVector3dLike[]) => import('@mlightcad/data-model').AcGeBox3d;
1438
+ setFromCenterAndSize: (center: import('@mlightcad/data-model').AcGeVector3dLike, size: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
1439
+ clone: () => import('@mlightcad/data-model').AcGeBox3d;
1440
+ copy: (box: import('@mlightcad/data-model').AcGeBox3d) => import('@mlightcad/data-model').AcGeBox3d;
1441
+ makeEmpty: () => import('@mlightcad/data-model').AcGeBox3d;
1442
+ isEmpty: () => boolean;
1443
+ getCenter: (target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1444
+ getSize: (target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1445
+ readonly center: {
1446
+ x: number;
1447
+ y: number;
1448
+ z: number;
1449
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
1450
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1451
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
1452
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
1453
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
1454
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
1455
+ getComponent: (index: number) => number;
1456
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
1457
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1458
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1459
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1460
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1461
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
1462
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1463
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1464
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1465
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1466
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1467
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1468
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
1469
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
1470
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1471
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1472
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1473
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
1474
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1475
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1476
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1477
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1478
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1479
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1480
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
1481
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
1482
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
1483
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
1484
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
1485
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
1486
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
1487
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1488
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
1489
+ lengthSq: () => number;
1490
+ length: () => number;
1491
+ manhattanLength: () => number;
1492
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
1493
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
1494
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1495
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1496
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1497
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1498
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1499
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1500
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1501
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
1502
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1503
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1504
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1505
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1506
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1507
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1508
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1509
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
1510
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
1511
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
1512
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
1513
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
1514
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
1515
+ };
1516
+ readonly size: {
1517
+ x: number;
1518
+ y: number;
1519
+ z: number;
1520
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
1521
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1522
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
1523
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
1524
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
1525
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
1526
+ getComponent: (index: number) => number;
1527
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
1528
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1529
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1530
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1531
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1532
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
1533
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1534
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1535
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1536
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1537
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1538
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1539
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
1540
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
1541
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1542
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1543
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1544
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
1545
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1546
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1547
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1548
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1549
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1550
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1551
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
1552
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
1553
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
1554
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
1555
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
1556
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
1557
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
1558
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1559
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
1560
+ lengthSq: () => number;
1561
+ length: () => number;
1562
+ manhattanLength: () => number;
1563
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
1564
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
1565
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1566
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1567
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1568
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1569
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1570
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1571
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1572
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
1573
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1574
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1575
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1576
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1577
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1578
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1579
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1580
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
1581
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
1582
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
1583
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
1584
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
1585
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
1586
+ };
1587
+ expandByPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
1588
+ expandByVector: (vector: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
1589
+ expandByScalar: (scalar: number) => import('@mlightcad/data-model').AcGeBox3d;
1590
+ containsPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
1591
+ containsBox: (box: import('@mlightcad/data-model').AcGeBox3d) => boolean;
1592
+ getParameter: (point: import('@mlightcad/data-model').AcGeVector3dLike, target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1593
+ intersectsBox: (box: import('@mlightcad/data-model').AcGeBox3d) => boolean;
1594
+ intersectsPlane: (plane: import('@mlightcad/data-model').AcGePlane) => boolean;
1595
+ clampPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike, target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1596
+ distanceToPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1597
+ intersect: (box: import('@mlightcad/data-model').AcGeBox3d) => import('@mlightcad/data-model').AcGeBox3d;
1598
+ union: (box: import('@mlightcad/data-model').AcGeBox3d) => import('@mlightcad/data-model').AcGeBox3d;
1599
+ applyMatrix4: (matrix: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeBox3d;
1600
+ translate: (offset: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
1601
+ equals: (box: import('@mlightcad/data-model').AcGeBox3d) => boolean;
1602
+ };
1603
+ pdmode: number;
1604
+ pdsize: number;
1605
+ read: (data: ArrayBuffer, options: import('@mlightcad/data-model').AcDbOpenDatabaseOptions, fileType?: import('@mlightcad/data-model').AcDbFileType) => Promise<void>;
1606
+ openUri: (url: string, options: import('@mlightcad/data-model').AcDbOpenDatabaseOptions) => Promise<void>;
1607
+ regen: () => Promise<void>;
1608
+ createDefaultData: (options?: import('@mlightcad/data-model').AcDbCreateDefaultDataOptions) => void;
1609
+ readonly attrs: {
1610
+ attributes: {
1611
+ [x: string]: any;
1612
+ objectId?: AcDbObjectId | undefined;
1613
+ ownerId?: AcDbObjectId | undefined;
1614
+ };
1615
+ changed: {
1616
+ [x: string]: any;
1617
+ objectId?: AcDbObjectId | undefined;
1618
+ ownerId?: AcDbObjectId | undefined;
1619
+ };
1620
+ readonly events: {
1621
+ attrChanged: {
1622
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1623
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1624
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1625
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
1626
+ };
1627
+ modelChanged: {
1628
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1629
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1630
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
1631
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
1632
+ };
1633
+ };
1634
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
1635
+ set: {
1636
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1637
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1638
+ };
1639
+ has: (key: string) => boolean;
1640
+ hasChanged: (key?: string | undefined) => boolean;
1641
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
1642
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
1643
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
1644
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
1645
+ };
1646
+ getAttr: (attrName: string) => any;
1647
+ getAttrWithoutException: (attrName: string) => any;
1648
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
1649
+ objectId: AcDbObjectId;
1650
+ ownerId: AcDbObjectId;
1651
+ database: /*elided*/ any;
1652
+ close: () => void;
1653
+ };
1654
+ close: () => void;
1655
+ } | null, AcDbEntity | {
1656
+ readonly type: string;
1657
+ layer: string;
1658
+ color: {
1659
+ color: number | null;
1660
+ readonly hexColor: string;
1661
+ readonly cssColor: string;
1662
+ readonly red: number | null;
1663
+ readonly green: number | null;
1664
+ readonly blue: number | null;
1665
+ colorIndex: number | null;
1666
+ colorName: string | null;
1667
+ readonly hasColorName: boolean;
1668
+ readonly hasColorIndex: boolean;
1669
+ readonly isByLayer: boolean;
1670
+ setByLayer: () => import('@mlightcad/data-model').AcCmColor;
1671
+ readonly isByBlock: boolean;
1672
+ setByBlock: () => import('@mlightcad/data-model').AcCmColor;
1673
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcCmColor;
1674
+ setRGB: (r: number, g: number, b: number) => import('@mlightcad/data-model').AcCmColor;
1675
+ setColorName: (style: string) => import('@mlightcad/data-model').AcCmColor;
1676
+ clone: () => import('@mlightcad/data-model').AcCmColor;
1677
+ copy: (color: import('@mlightcad/data-model').AcCmColor) => import('@mlightcad/data-model').AcCmColor;
1678
+ equals: (c: import('@mlightcad/data-model').AcCmColor) => boolean;
1679
+ toString: () => string;
1680
+ };
1681
+ readonly rgbColor: number;
1682
+ lineType: string;
1683
+ lineWeight: number;
1684
+ linetypeScale: number;
1685
+ visibility: boolean;
1686
+ transparency: number;
1687
+ readonly properties: {
1688
+ type: string;
1689
+ groups: {
1690
+ groupName: import('@mlightcad/data-model').AcDbEntityPropertyGroupName;
1691
+ properties: {
1692
+ accessor: {
1693
+ get: () => unknown;
1694
+ set?: ((value: unknown) => void) | undefined;
1695
+ };
1696
+ name: string;
1697
+ type: import('@mlightcad/data-model').AcDbEntityPropertyType;
1698
+ options?: {
1699
+ label: string;
1700
+ value: unknown;
1701
+ }[] | undefined;
1702
+ editable?: boolean | undefined;
1703
+ }[];
1704
+ }[];
1705
+ };
1706
+ subGetGripPoints: () => import('@mlightcad/data-model').AcGePoint3d[];
1707
+ subGetOsnapPoints: (osnapMode: import('@mlightcad/data-model').AcDbOsnapMode, pickPoint: AcGePoint3dLike, lastPoint: AcGePoint3dLike, snapPoints: import('@mlightcad/data-model').AcGePoint3d[]) => void;
1708
+ transformBy: (matrix: import('@mlightcad/data-model').AcGeMatrix3d) => AcDbEntity;
1709
+ readonly geometricExtents: {
1710
+ min: {
1711
+ x: number;
1712
+ y: number;
1713
+ z: number;
1714
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
1715
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1716
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
1717
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
1718
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
1719
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
1720
+ getComponent: (index: number) => number;
1721
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
1722
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1723
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1724
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1725
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1726
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
1727
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1728
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1729
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1730
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1731
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1732
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1733
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
1734
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
1735
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1736
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1737
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1738
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
1739
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1740
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1741
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1742
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1743
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1744
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1745
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
1746
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
1747
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
1748
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
1749
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
1750
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
1751
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
1752
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1753
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
1754
+ lengthSq: () => number;
1755
+ length: () => number;
1756
+ manhattanLength: () => number;
1757
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
1758
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
1759
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1760
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1761
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1762
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1763
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1764
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1765
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1766
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
1767
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1768
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1769
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1770
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1771
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1772
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1773
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1774
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
1775
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
1776
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
1777
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
1778
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
1779
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
1780
+ };
1781
+ max: {
1782
+ x: number;
1783
+ y: number;
1784
+ z: number;
1785
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
1786
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1787
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
1788
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
1789
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
1790
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
1791
+ getComponent: (index: number) => number;
1792
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
1793
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1794
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1795
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1796
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1797
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
1798
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1799
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1800
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1801
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1802
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1803
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1804
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
1805
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
1806
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1807
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1808
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1809
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
1810
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1811
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1812
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1813
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1814
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1815
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1816
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
1817
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
1818
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
1819
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
1820
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
1821
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
1822
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
1823
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1824
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
1825
+ lengthSq: () => number;
1826
+ length: () => number;
1827
+ manhattanLength: () => number;
1828
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
1829
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
1830
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1831
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1832
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1833
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1834
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1835
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1836
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1837
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
1838
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1839
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1840
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1841
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1842
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1843
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1844
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1845
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
1846
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
1847
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
1848
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
1849
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
1850
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
1851
+ };
1852
+ set: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
1853
+ setFromArray: (array: number[]) => import('@mlightcad/data-model').AcGeBox3d;
1854
+ setFromPoints: (points: import('@mlightcad/data-model').AcGeVector3dLike[]) => import('@mlightcad/data-model').AcGeBox3d;
1855
+ setFromCenterAndSize: (center: import('@mlightcad/data-model').AcGeVector3dLike, size: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
1856
+ clone: () => import('@mlightcad/data-model').AcGeBox3d;
1857
+ copy: (box: import('@mlightcad/data-model').AcGeBox3d) => import('@mlightcad/data-model').AcGeBox3d;
1858
+ makeEmpty: () => import('@mlightcad/data-model').AcGeBox3d;
1859
+ isEmpty: () => boolean;
1860
+ getCenter: (target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1861
+ getSize: (target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1862
+ readonly center: {
1863
+ x: number;
1864
+ y: number;
1865
+ z: number;
1866
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
1867
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1868
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
1869
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
1870
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
1871
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
1872
+ getComponent: (index: number) => number;
1873
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
1874
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1875
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1876
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1877
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1878
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
1879
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1880
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1881
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1882
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1883
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1884
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1885
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
1886
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
1887
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1888
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1889
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1890
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
1891
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1892
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1893
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1894
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1895
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1896
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1897
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
1898
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
1899
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
1900
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
1901
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
1902
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
1903
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
1904
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1905
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
1906
+ lengthSq: () => number;
1907
+ length: () => number;
1908
+ manhattanLength: () => number;
1909
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
1910
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
1911
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1912
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1913
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1914
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1915
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1916
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1917
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1918
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
1919
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1920
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1921
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1922
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1923
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1924
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1925
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1926
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
1927
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
1928
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
1929
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
1930
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
1931
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
1932
+ };
1933
+ readonly size: {
1934
+ x: number;
1935
+ y: number;
1936
+ z: number;
1937
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
1938
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1939
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
1940
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
1941
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
1942
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
1943
+ getComponent: (index: number) => number;
1944
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
1945
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1946
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
1947
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1948
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1949
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
1950
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1951
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
1952
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1953
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1954
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1955
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1956
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
1957
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
1958
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1959
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
1960
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1961
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
1962
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1963
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1964
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
1965
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1966
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1967
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1968
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
1969
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
1970
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
1971
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
1972
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
1973
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
1974
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
1975
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1976
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
1977
+ lengthSq: () => number;
1978
+ length: () => number;
1979
+ manhattanLength: () => number;
1980
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
1981
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
1982
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1983
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
1984
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1985
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1986
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1987
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
1988
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
1989
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
1990
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1991
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1992
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
1993
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1994
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
1995
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1996
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
1997
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
1998
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
1999
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
2000
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
2001
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
2002
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
2003
+ };
2004
+ expandByPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
2005
+ expandByVector: (vector: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
2006
+ expandByScalar: (scalar: number) => import('@mlightcad/data-model').AcGeBox3d;
2007
+ containsPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
2008
+ containsBox: (box: import('@mlightcad/data-model').AcGeBox3d) => boolean;
2009
+ getParameter: (point: import('@mlightcad/data-model').AcGeVector3dLike, target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
2010
+ intersectsBox: (box: import('@mlightcad/data-model').AcGeBox3d) => boolean;
2011
+ intersectsPlane: (plane: import('@mlightcad/data-model').AcGePlane) => boolean;
2012
+ clampPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike, target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
2013
+ distanceToPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2014
+ intersect: (box: import('@mlightcad/data-model').AcGeBox3d) => import('@mlightcad/data-model').AcGeBox3d;
2015
+ union: (box: import('@mlightcad/data-model').AcGeBox3d) => import('@mlightcad/data-model').AcGeBox3d;
2016
+ applyMatrix4: (matrix: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeBox3d;
2017
+ translate: (offset: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
2018
+ equals: (box: import('@mlightcad/data-model').AcGeBox3d) => boolean;
2019
+ };
2020
+ draw: (renderer: import('@mlightcad/data-model').AcGiRenderer, delay?: boolean) => import('@mlightcad/data-model').AcGiEntity | undefined;
2021
+ triggerModifiedEvent: () => void;
2022
+ readonly attrs: {
2023
+ attributes: {
2024
+ [x: string]: any;
2025
+ objectId?: AcDbObjectId | undefined;
2026
+ ownerId?: AcDbObjectId | undefined;
2027
+ };
2028
+ changed: {
2029
+ [x: string]: any;
2030
+ objectId?: AcDbObjectId | undefined;
2031
+ ownerId?: AcDbObjectId | undefined;
2032
+ };
2033
+ readonly events: {
2034
+ attrChanged: {
2035
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2036
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2037
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2038
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2039
+ };
2040
+ modelChanged: {
2041
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2042
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2043
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2044
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2045
+ };
2046
+ };
2047
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
2048
+ set: {
2049
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2050
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2051
+ };
2052
+ has: (key: string) => boolean;
2053
+ hasChanged: (key?: string | undefined) => boolean;
2054
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2055
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
2056
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2057
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2058
+ };
2059
+ getAttr: (attrName: string) => any;
2060
+ getAttrWithoutException: (attrName: string) => any;
2061
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2062
+ objectId: AcDbObjectId;
2063
+ ownerId: AcDbObjectId;
2064
+ database: {
2065
+ readonly events: {
2066
+ dictObjetSet: {
2067
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
2068
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
2069
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
2070
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbDictObjectEventArgs | undefined, ...args: unknown[]) => void;
2071
+ };
2072
+ dictObjectErased: {
2073
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
2074
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
2075
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbDictObjectEventArgs) => void) => void;
2076
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbDictObjectEventArgs | undefined, ...args: unknown[]) => void;
2077
+ };
2078
+ entityAppended: {
2079
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbEntityEventArgs) => void) => void;
2080
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbEntityEventArgs) => void) => void;
2081
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbEntityEventArgs) => void) => void;
2082
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbEntityEventArgs | undefined, ...args: unknown[]) => void;
2083
+ };
2084
+ entityModified: {
2085
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbEntityEventArgs) => void) => void;
2086
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbEntityEventArgs) => void) => void;
2087
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbEntityEventArgs) => void) => void;
2088
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbEntityEventArgs | undefined, ...args: unknown[]) => void;
2089
+ };
2090
+ layerAppended: {
2091
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerEventArgs) => void) => void;
2092
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerEventArgs) => void) => void;
2093
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerEventArgs) => void) => void;
2094
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbLayerEventArgs | undefined, ...args: unknown[]) => void;
2095
+ };
2096
+ layerModified: {
2097
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerModifiedEventArgs) => void) => void;
2098
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerModifiedEventArgs) => void) => void;
2099
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerModifiedEventArgs) => void) => void;
2100
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbLayerModifiedEventArgs | undefined, ...args: unknown[]) => void;
2101
+ };
2102
+ layerErased: {
2103
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerEventArgs) => void) => void;
2104
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerEventArgs) => void) => void;
2105
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbLayerEventArgs) => void) => void;
2106
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbLayerEventArgs | undefined, ...args: unknown[]) => void;
2107
+ };
2108
+ openProgress: {
2109
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbProgressdEventArgs) => void) => void;
2110
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbProgressdEventArgs) => void) => void;
2111
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbProgressdEventArgs) => void) => void;
2112
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbProgressdEventArgs | undefined, ...args: unknown[]) => void;
2113
+ };
2114
+ headerSysVarChanged: {
2115
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbHeaderSysVarEventArgs) => void) => void;
2116
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbHeaderSysVarEventArgs) => void) => void;
2117
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcDbHeaderSysVarEventArgs) => void) => void;
2118
+ dispatch: (payload?: import('@mlightcad/data-model').AcDbHeaderSysVarEventArgs | undefined, ...args: unknown[]) => void;
2119
+ };
2120
+ };
2121
+ readonly tables: {
2122
+ readonly blockTable: {
2123
+ readonly modelSpace: {
2124
+ readonly isModelSapce: boolean;
2125
+ readonly isPaperSapce: boolean;
2126
+ origin: {
2127
+ x: number;
2128
+ y: number;
2129
+ z: number;
2130
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGePoint3d;
2131
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
2132
+ setX: (x: number) => import('@mlightcad/data-model').AcGePoint3d;
2133
+ setY: (y: number) => import('@mlightcad/data-model').AcGePoint3d;
2134
+ setZ: (z: number) => import('@mlightcad/data-model').AcGePoint3d;
2135
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGePoint3d;
2136
+ getComponent: (index: number) => number;
2137
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
2138
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
2139
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
2140
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
2141
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2142
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGePoint3d;
2143
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2144
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
2145
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2146
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2147
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
2148
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2149
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGePoint3d;
2150
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGePoint3d;
2151
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
2152
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
2153
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
2154
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGePoint3d;
2155
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
2156
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2157
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
2158
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2159
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2160
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2161
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGePoint3d;
2162
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGePoint3d;
2163
+ floor: () => import('@mlightcad/data-model').AcGePoint3d;
2164
+ ceil: () => import('@mlightcad/data-model').AcGePoint3d;
2165
+ round: () => import('@mlightcad/data-model').AcGePoint3d;
2166
+ roundToZero: () => import('@mlightcad/data-model').AcGePoint3d;
2167
+ negate: () => import('@mlightcad/data-model').AcGePoint3d;
2168
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2169
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
2170
+ lengthSq: () => number;
2171
+ length: () => number;
2172
+ manhattanLength: () => number;
2173
+ normalize: () => import('@mlightcad/data-model').AcGePoint3d;
2174
+ setLength: (l: number) => import('@mlightcad/data-model').AcGePoint3d;
2175
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
2176
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
2177
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2178
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2179
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
2180
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
2181
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2182
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
2183
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2184
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2185
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2186
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
2187
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
2188
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
2189
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
2190
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
2191
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGePoint3d;
2192
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
2193
+ random: () => import('@mlightcad/data-model').AcGePoint3d;
2194
+ randomDirection: () => import('@mlightcad/data-model').AcGePoint3d;
2195
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
2196
+ };
2197
+ layoutId: AcDbObjectId;
2198
+ appendEntity: (entity: AcDbEntity | AcDbEntity[]) => void;
2199
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<AcDbEntity>;
2200
+ getIdAt: (id: string) => AcDbEntity | undefined;
2201
+ name: string;
2202
+ readonly attrs: {
2203
+ attributes: {
2204
+ [x: string]: any;
2205
+ name?: string | undefined;
2206
+ objectId?: AcDbObjectId | undefined;
2207
+ ownerId?: AcDbObjectId | undefined;
2208
+ };
2209
+ changed: {
2210
+ [x: string]: any;
2211
+ name?: string | undefined;
2212
+ objectId?: AcDbObjectId | undefined;
2213
+ ownerId?: AcDbObjectId | undefined;
2214
+ };
2215
+ readonly events: {
2216
+ attrChanged: {
2217
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
2218
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
2219
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
2220
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs> | undefined, ...args: unknown[]) => void;
2221
+ };
2222
+ modelChanged: {
2223
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
2224
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
2225
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>) => void) => void;
2226
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs> | undefined, ...args: unknown[]) => void;
2227
+ };
2228
+ };
2229
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined;
2230
+ set: {
2231
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
2232
+ (key: Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
2233
+ };
2234
+ has: (key: string) => boolean;
2235
+ hasChanged: (key?: string | undefined) => boolean;
2236
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
2237
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | null | undefined;
2238
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
2239
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs>;
2240
+ };
2241
+ getAttr: (attrName: string) => any;
2242
+ getAttrWithoutException: (attrName: string) => any;
2243
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbSymbolTableRecordAttrs[A] | undefined) => void;
2244
+ objectId: AcDbObjectId;
2245
+ ownerId: AcDbObjectId;
2246
+ database: /*elided*/ any;
2247
+ close: () => void;
2248
+ };
2249
+ readonly numEntries: number;
2250
+ add: (record: import('@mlightcad/data-model').AcDbBlockTableRecord) => void;
2251
+ remove: (name: string) => boolean;
2252
+ removeId: (id: AcDbObjectId) => boolean;
2253
+ removeAll: () => void;
2254
+ has: (name: string) => boolean;
2255
+ hasId: (id: string) => boolean;
2256
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
2257
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
2258
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbBlockTableRecord | undefined;
2259
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbBlockTableRecord>;
2260
+ readonly attrs: {
2261
+ attributes: {
2262
+ [x: string]: any;
2263
+ objectId?: AcDbObjectId | undefined;
2264
+ ownerId?: AcDbObjectId | undefined;
2265
+ };
2266
+ changed: {
2267
+ [x: string]: any;
2268
+ objectId?: AcDbObjectId | undefined;
2269
+ ownerId?: AcDbObjectId | undefined;
2270
+ };
2271
+ readonly events: {
2272
+ attrChanged: {
2273
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2274
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2275
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2276
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2277
+ };
2278
+ modelChanged: {
2279
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2280
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2281
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2282
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2283
+ };
2284
+ };
2285
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
2286
+ set: {
2287
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2288
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2289
+ };
2290
+ has: (key: string) => boolean;
2291
+ hasChanged: (key?: string | undefined) => boolean;
2292
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2293
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
2294
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2295
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2296
+ };
2297
+ getAttr: (attrName: string) => any;
2298
+ getAttrWithoutException: (attrName: string) => any;
2299
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2300
+ objectId: AcDbObjectId;
2301
+ ownerId: AcDbObjectId;
2302
+ database: /*elided*/ any;
2303
+ close: () => void;
2304
+ };
2305
+ readonly dimStyleTable: {
2306
+ readonly numEntries: number;
2307
+ add: (record: import('@mlightcad/data-model').AcDbDimStyleTableRecord) => void;
2308
+ remove: (name: string) => boolean;
2309
+ removeId: (id: AcDbObjectId) => boolean;
2310
+ removeAll: () => void;
2311
+ has: (name: string) => boolean;
2312
+ hasId: (id: string) => boolean;
2313
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
2314
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
2315
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbDimStyleTableRecord | undefined;
2316
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbDimStyleTableRecord>;
2317
+ readonly attrs: {
2318
+ attributes: {
2319
+ [x: string]: any;
2320
+ objectId?: AcDbObjectId | undefined;
2321
+ ownerId?: AcDbObjectId | undefined;
2322
+ };
2323
+ changed: {
2324
+ [x: string]: any;
2325
+ objectId?: AcDbObjectId | undefined;
2326
+ ownerId?: AcDbObjectId | undefined;
2327
+ };
2328
+ readonly events: {
2329
+ attrChanged: {
2330
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2331
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2332
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2333
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2334
+ };
2335
+ modelChanged: {
2336
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2337
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2338
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2339
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2340
+ };
2341
+ };
2342
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
2343
+ set: {
2344
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2345
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2346
+ };
2347
+ has: (key: string) => boolean;
2348
+ hasChanged: (key?: string | undefined) => boolean;
2349
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2350
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
2351
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2352
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2353
+ };
2354
+ getAttr: (attrName: string) => any;
2355
+ getAttrWithoutException: (attrName: string) => any;
2356
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2357
+ objectId: AcDbObjectId;
2358
+ ownerId: AcDbObjectId;
2359
+ database: /*elided*/ any;
2360
+ close: () => void;
2361
+ };
2362
+ readonly linetypeTable: {
2363
+ readonly numEntries: number;
2364
+ add: (record: import('@mlightcad/data-model').AcDbLinetypeTableRecord) => void;
2365
+ remove: (name: string) => boolean;
2366
+ removeId: (id: AcDbObjectId) => boolean;
2367
+ removeAll: () => void;
2368
+ has: (name: string) => boolean;
2369
+ hasId: (id: string) => boolean;
2370
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
2371
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
2372
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLinetypeTableRecord | undefined;
2373
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLinetypeTableRecord>;
2374
+ readonly attrs: {
2375
+ attributes: {
2376
+ [x: string]: any;
2377
+ objectId?: AcDbObjectId | undefined;
2378
+ ownerId?: AcDbObjectId | undefined;
2379
+ };
2380
+ changed: {
2381
+ [x: string]: any;
2382
+ objectId?: AcDbObjectId | undefined;
2383
+ ownerId?: AcDbObjectId | undefined;
2384
+ };
2385
+ readonly events: {
2386
+ attrChanged: {
2387
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2388
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2389
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2390
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2391
+ };
2392
+ modelChanged: {
2393
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2394
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2395
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2396
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2397
+ };
2398
+ };
2399
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
2400
+ set: {
2401
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2402
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2403
+ };
2404
+ has: (key: string) => boolean;
2405
+ hasChanged: (key?: string | undefined) => boolean;
2406
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2407
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
2408
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2409
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2410
+ };
2411
+ getAttr: (attrName: string) => any;
2412
+ getAttrWithoutException: (attrName: string) => any;
2413
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2414
+ objectId: AcDbObjectId;
2415
+ ownerId: AcDbObjectId;
2416
+ database: /*elided*/ any;
2417
+ close: () => void;
2418
+ };
2419
+ readonly textStyleTable: {
2420
+ readonly fonts: string[];
2421
+ readonly numEntries: number;
2422
+ add: (record: import('@mlightcad/data-model').AcDbTextStyleTableRecord) => void;
2423
+ remove: (name: string) => boolean;
2424
+ removeId: (id: AcDbObjectId) => boolean;
2425
+ removeAll: () => void;
2426
+ has: (name: string) => boolean;
2427
+ hasId: (id: string) => boolean;
2428
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
2429
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
2430
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbTextStyleTableRecord | undefined;
2431
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbTextStyleTableRecord>;
2432
+ readonly attrs: {
2433
+ attributes: {
2434
+ [x: string]: any;
2435
+ objectId?: AcDbObjectId | undefined;
2436
+ ownerId?: AcDbObjectId | undefined;
2437
+ };
2438
+ changed: {
2439
+ [x: string]: any;
2440
+ objectId?: AcDbObjectId | undefined;
2441
+ ownerId?: AcDbObjectId | undefined;
2442
+ };
2443
+ readonly events: {
2444
+ attrChanged: {
2445
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2446
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2447
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2448
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2449
+ };
2450
+ modelChanged: {
2451
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2452
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2453
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2454
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2455
+ };
2456
+ };
2457
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
2458
+ set: {
2459
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2460
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2461
+ };
2462
+ has: (key: string) => boolean;
2463
+ hasChanged: (key?: string | undefined) => boolean;
2464
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2465
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
2466
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2467
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2468
+ };
2469
+ getAttr: (attrName: string) => any;
2470
+ getAttrWithoutException: (attrName: string) => any;
2471
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2472
+ objectId: AcDbObjectId;
2473
+ ownerId: AcDbObjectId;
2474
+ database: /*elided*/ any;
2475
+ close: () => void;
2476
+ };
2477
+ readonly layerTable: {
2478
+ add: (record: import('@mlightcad/data-model').AcDbLayerTableRecord) => void;
2479
+ readonly numEntries: number;
2480
+ remove: (name: string) => boolean;
2481
+ removeId: (id: AcDbObjectId) => boolean;
2482
+ removeAll: () => void;
2483
+ has: (name: string) => boolean;
2484
+ hasId: (id: string) => boolean;
2485
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
2486
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
2487
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayerTableRecord | undefined;
2488
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLayerTableRecord>;
2489
+ readonly attrs: {
2490
+ attributes: {
2491
+ [x: string]: any;
2492
+ objectId?: AcDbObjectId | undefined;
2493
+ ownerId?: AcDbObjectId | undefined;
2494
+ };
2495
+ changed: {
2496
+ [x: string]: any;
2497
+ objectId?: AcDbObjectId | undefined;
2498
+ ownerId?: AcDbObjectId | undefined;
2499
+ };
2500
+ readonly events: {
2501
+ attrChanged: {
2502
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2503
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2504
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2505
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2506
+ };
2507
+ modelChanged: {
2508
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2509
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2510
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2511
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2512
+ };
2513
+ };
2514
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
2515
+ set: {
2516
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2517
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2518
+ };
2519
+ has: (key: string) => boolean;
2520
+ hasChanged: (key?: string | undefined) => boolean;
2521
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2522
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
2523
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2524
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2525
+ };
2526
+ getAttr: (attrName: string) => any;
2527
+ getAttrWithoutException: (attrName: string) => any;
2528
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2529
+ objectId: AcDbObjectId;
2530
+ ownerId: AcDbObjectId;
2531
+ database: /*elided*/ any;
2532
+ close: () => void;
2533
+ };
2534
+ readonly viewportTable: {
2535
+ readonly numEntries: number;
2536
+ add: (record: import('@mlightcad/data-model').AcDbViewportTableRecord) => void;
2537
+ remove: (name: string) => boolean;
2538
+ removeId: (id: AcDbObjectId) => boolean;
2539
+ removeAll: () => void;
2540
+ has: (name: string) => boolean;
2541
+ hasId: (id: string) => boolean;
2542
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
2543
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
2544
+ getOwnerIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbViewportTableRecord | undefined;
2545
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbViewportTableRecord>;
2546
+ readonly attrs: {
2547
+ attributes: {
2548
+ [x: string]: any;
2549
+ objectId?: AcDbObjectId | undefined;
2550
+ ownerId?: AcDbObjectId | undefined;
2551
+ };
2552
+ changed: {
2553
+ [x: string]: any;
2554
+ objectId?: AcDbObjectId | undefined;
2555
+ ownerId?: AcDbObjectId | undefined;
2556
+ };
2557
+ readonly events: {
2558
+ attrChanged: {
2559
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2560
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2561
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2562
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2563
+ };
2564
+ modelChanged: {
2565
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2566
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2567
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2568
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2569
+ };
2570
+ };
2571
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
2572
+ set: {
2573
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2574
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2575
+ };
2576
+ has: (key: string) => boolean;
2577
+ hasChanged: (key?: string | undefined) => boolean;
2578
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2579
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
2580
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2581
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2582
+ };
2583
+ getAttr: (attrName: string) => any;
2584
+ getAttrWithoutException: (attrName: string) => any;
2585
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2586
+ objectId: AcDbObjectId;
2587
+ ownerId: AcDbObjectId;
2588
+ database: /*elided*/ any;
2589
+ close: () => void;
2590
+ };
2591
+ };
2592
+ readonly dictionaries: {
2593
+ readonly layouts: {
2594
+ getBtrIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayout | undefined;
2595
+ readonly maxTabOrder: number;
2596
+ readonly numEntries: number;
2597
+ setAt: (key: string, value: import('@mlightcad/data-model').AcDbLayout) => void;
2598
+ remove: (name: string) => boolean;
2599
+ removeId: (id: string) => boolean;
2600
+ removeAll: () => void;
2601
+ has: (name: string) => boolean;
2602
+ hasId: (id: string) => boolean;
2603
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbLayout | undefined;
2604
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbLayout | undefined;
2605
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbLayout>;
2606
+ readonly attrs: {
2607
+ attributes: {
2608
+ [x: string]: any;
2609
+ objectId?: AcDbObjectId | undefined;
2610
+ ownerId?: AcDbObjectId | undefined;
2611
+ };
2612
+ changed: {
2613
+ [x: string]: any;
2614
+ objectId?: AcDbObjectId | undefined;
2615
+ ownerId?: AcDbObjectId | undefined;
2616
+ };
2617
+ readonly events: {
2618
+ attrChanged: {
2619
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2620
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2621
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2622
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2623
+ };
2624
+ modelChanged: {
2625
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2626
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2627
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2628
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2629
+ };
2630
+ };
2631
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
2632
+ set: {
2633
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2634
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2635
+ };
2636
+ has: (key: string) => boolean;
2637
+ hasChanged: (key?: string | undefined) => boolean;
2638
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2639
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
2640
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2641
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2642
+ };
2643
+ getAttr: (attrName: string) => any;
2644
+ getAttrWithoutException: (attrName: string) => any;
2645
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2646
+ objectId: AcDbObjectId;
2647
+ ownerId: AcDbObjectId;
2648
+ database: /*elided*/ any;
2649
+ close: () => void;
2650
+ };
2651
+ readonly imageDefs: {
2652
+ readonly numEntries: number;
2653
+ setAt: (key: string, value: import('@mlightcad/data-model').AcDbRasterImageDef) => void;
2654
+ remove: (name: string) => boolean;
2655
+ removeId: (id: string) => boolean;
2656
+ removeAll: () => void;
2657
+ has: (name: string) => boolean;
2658
+ hasId: (id: string) => boolean;
2659
+ getAt: (name: string) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
2660
+ getIdAt: (id: AcDbObjectId) => import('@mlightcad/data-model').AcDbRasterImageDef | undefined;
2661
+ newIterator: () => import('@mlightcad/data-model').AcDbObjectIterator<import('@mlightcad/data-model').AcDbRasterImageDef>;
2662
+ readonly attrs: {
2663
+ attributes: {
2664
+ [x: string]: any;
2665
+ objectId?: AcDbObjectId | undefined;
2666
+ ownerId?: AcDbObjectId | undefined;
2667
+ };
2668
+ changed: {
2669
+ [x: string]: any;
2670
+ objectId?: AcDbObjectId | undefined;
2671
+ ownerId?: AcDbObjectId | undefined;
2672
+ };
2673
+ readonly events: {
2674
+ attrChanged: {
2675
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2676
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2677
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2678
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2679
+ };
2680
+ modelChanged: {
2681
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2682
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2683
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
2684
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
2685
+ };
2686
+ };
2687
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
2688
+ set: {
2689
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2690
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2691
+ };
2692
+ has: (key: string) => boolean;
2693
+ hasChanged: (key?: string | undefined) => boolean;
2694
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2695
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
2696
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
2697
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
2698
+ };
2699
+ getAttr: (attrName: string) => any;
2700
+ getAttrWithoutException: (attrName: string) => any;
2701
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
2702
+ objectId: AcDbObjectId;
2703
+ ownerId: AcDbObjectId;
2704
+ database: /*elided*/ any;
2705
+ close: () => void;
2706
+ };
2707
+ };
2708
+ currentSpaceId: AcDbObjectId;
2709
+ aunits: number;
2710
+ version: {
2711
+ name: string;
2712
+ value: number;
2713
+ };
2714
+ insunits: number;
2715
+ ltscale: number;
2716
+ cecolor: {
2717
+ color: number | null;
2718
+ readonly hexColor: string;
2719
+ readonly cssColor: string;
2720
+ readonly red: number | null;
2721
+ readonly green: number | null;
2722
+ readonly blue: number | null;
2723
+ colorIndex: number | null;
2724
+ colorName: string | null;
2725
+ readonly hasColorName: boolean;
2726
+ readonly hasColorIndex: boolean;
2727
+ readonly isByLayer: boolean;
2728
+ setByLayer: () => import('@mlightcad/data-model').AcCmColor;
2729
+ readonly isByBlock: boolean;
2730
+ setByBlock: () => import('@mlightcad/data-model').AcCmColor;
2731
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcCmColor;
2732
+ setRGB: (r: number, g: number, b: number) => import('@mlightcad/data-model').AcCmColor;
2733
+ setColorName: (style: string) => import('@mlightcad/data-model').AcCmColor;
2734
+ clone: () => import('@mlightcad/data-model').AcCmColor;
2735
+ copy: (color: import('@mlightcad/data-model').AcCmColor) => import('@mlightcad/data-model').AcCmColor;
2736
+ equals: (c: import('@mlightcad/data-model').AcCmColor) => boolean;
2737
+ toString: () => string;
2738
+ };
2739
+ celtscale: number;
2740
+ angBase: number;
2741
+ angDir: number;
2742
+ extmax: {
2743
+ x: number;
2744
+ y: number;
2745
+ z: number;
2746
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGePoint3d;
2747
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
2748
+ setX: (x: number) => import('@mlightcad/data-model').AcGePoint3d;
2749
+ setY: (y: number) => import('@mlightcad/data-model').AcGePoint3d;
2750
+ setZ: (z: number) => import('@mlightcad/data-model').AcGePoint3d;
2751
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGePoint3d;
2752
+ getComponent: (index: number) => number;
2753
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
2754
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
2755
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
2756
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
2757
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2758
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGePoint3d;
2759
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2760
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
2761
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2762
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2763
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
2764
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2765
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGePoint3d;
2766
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGePoint3d;
2767
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
2768
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
2769
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
2770
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGePoint3d;
2771
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
2772
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2773
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
2774
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2775
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2776
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2777
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGePoint3d;
2778
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGePoint3d;
2779
+ floor: () => import('@mlightcad/data-model').AcGePoint3d;
2780
+ ceil: () => import('@mlightcad/data-model').AcGePoint3d;
2781
+ round: () => import('@mlightcad/data-model').AcGePoint3d;
2782
+ roundToZero: () => import('@mlightcad/data-model').AcGePoint3d;
2783
+ negate: () => import('@mlightcad/data-model').AcGePoint3d;
2784
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2785
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
2786
+ lengthSq: () => number;
2787
+ length: () => number;
2788
+ manhattanLength: () => number;
2789
+ normalize: () => import('@mlightcad/data-model').AcGePoint3d;
2790
+ setLength: (l: number) => import('@mlightcad/data-model').AcGePoint3d;
2791
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
2792
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
2793
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2794
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2795
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
2796
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
2797
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2798
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
2799
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2800
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2801
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2802
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
2803
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
2804
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
2805
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
2806
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
2807
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGePoint3d;
2808
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
2809
+ random: () => import('@mlightcad/data-model').AcGePoint3d;
2810
+ randomDirection: () => import('@mlightcad/data-model').AcGePoint3d;
2811
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
2812
+ };
2813
+ extmin: {
2814
+ x: number;
2815
+ y: number;
2816
+ z: number;
2817
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGePoint3d;
2818
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
2819
+ setX: (x: number) => import('@mlightcad/data-model').AcGePoint3d;
2820
+ setY: (y: number) => import('@mlightcad/data-model').AcGePoint3d;
2821
+ setZ: (z: number) => import('@mlightcad/data-model').AcGePoint3d;
2822
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGePoint3d;
2823
+ getComponent: (index: number) => number;
2824
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
2825
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
2826
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGePoint3d;
2827
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
2828
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2829
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGePoint3d;
2830
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2831
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGePoint3d;
2832
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2833
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2834
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
2835
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2836
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGePoint3d;
2837
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGePoint3d;
2838
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
2839
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGePoint3d;
2840
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
2841
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGePoint3d;
2842
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
2843
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2844
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGePoint3d;
2845
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2846
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2847
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2848
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGePoint3d;
2849
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGePoint3d;
2850
+ floor: () => import('@mlightcad/data-model').AcGePoint3d;
2851
+ ceil: () => import('@mlightcad/data-model').AcGePoint3d;
2852
+ round: () => import('@mlightcad/data-model').AcGePoint3d;
2853
+ roundToZero: () => import('@mlightcad/data-model').AcGePoint3d;
2854
+ negate: () => import('@mlightcad/data-model').AcGePoint3d;
2855
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2856
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
2857
+ lengthSq: () => number;
2858
+ length: () => number;
2859
+ manhattanLength: () => number;
2860
+ normalize: () => import('@mlightcad/data-model').AcGePoint3d;
2861
+ setLength: (l: number) => import('@mlightcad/data-model').AcGePoint3d;
2862
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
2863
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGePoint3d;
2864
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2865
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2866
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
2867
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGePoint3d;
2868
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGePoint3d;
2869
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
2870
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2871
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2872
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2873
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
2874
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGePoint3d;
2875
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
2876
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGePoint3d;
2877
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
2878
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGePoint3d;
2879
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
2880
+ random: () => import('@mlightcad/data-model').AcGePoint3d;
2881
+ randomDirection: () => import('@mlightcad/data-model').AcGePoint3d;
2882
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
2883
+ };
2884
+ readonly extents: {
2885
+ min: {
2886
+ x: number;
2887
+ y: number;
2888
+ z: number;
2889
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
2890
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
2891
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
2892
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
2893
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
2894
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
2895
+ getComponent: (index: number) => number;
2896
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
2897
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
2898
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
2899
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
2900
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2901
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
2902
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2903
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
2904
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2905
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2906
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
2907
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2908
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
2909
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
2910
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
2911
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
2912
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
2913
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
2914
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
2915
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2916
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
2917
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2918
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2919
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2920
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
2921
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
2922
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
2923
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
2924
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
2925
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
2926
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
2927
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2928
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
2929
+ lengthSq: () => number;
2930
+ length: () => number;
2931
+ manhattanLength: () => number;
2932
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
2933
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
2934
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
2935
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
2936
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2937
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2938
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
2939
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
2940
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2941
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
2942
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2943
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2944
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2945
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
2946
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
2947
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
2948
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
2949
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
2950
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
2951
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
2952
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
2953
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
2954
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
2955
+ };
2956
+ max: {
2957
+ x: number;
2958
+ y: number;
2959
+ z: number;
2960
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
2961
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
2962
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
2963
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
2964
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
2965
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
2966
+ getComponent: (index: number) => number;
2967
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
2968
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
2969
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
2970
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
2971
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2972
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
2973
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2974
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
2975
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2976
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2977
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
2978
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2979
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
2980
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
2981
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
2982
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
2983
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
2984
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
2985
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
2986
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2987
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
2988
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2989
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2990
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
2991
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
2992
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
2993
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
2994
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
2995
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
2996
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
2997
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
2998
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
2999
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
3000
+ lengthSq: () => number;
3001
+ length: () => number;
3002
+ manhattanLength: () => number;
3003
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
3004
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
3005
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
3006
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
3007
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3008
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3009
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
3010
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
3011
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3012
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
3013
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3014
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3015
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3016
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
3017
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
3018
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
3019
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
3020
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
3021
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
3022
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
3023
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
3024
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
3025
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
3026
+ };
3027
+ set: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
3028
+ setFromArray: (array: number[]) => import('@mlightcad/data-model').AcGeBox3d;
3029
+ setFromPoints: (points: import('@mlightcad/data-model').AcGeVector3dLike[]) => import('@mlightcad/data-model').AcGeBox3d;
3030
+ setFromCenterAndSize: (center: import('@mlightcad/data-model').AcGeVector3dLike, size: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
3031
+ clone: () => import('@mlightcad/data-model').AcGeBox3d;
3032
+ copy: (box: import('@mlightcad/data-model').AcGeBox3d) => import('@mlightcad/data-model').AcGeBox3d;
3033
+ makeEmpty: () => import('@mlightcad/data-model').AcGeBox3d;
3034
+ isEmpty: () => boolean;
3035
+ getCenter: (target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
3036
+ getSize: (target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
3037
+ readonly center: {
3038
+ x: number;
3039
+ y: number;
3040
+ z: number;
3041
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
3042
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
3043
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
3044
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
3045
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
3046
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
3047
+ getComponent: (index: number) => number;
3048
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
3049
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
3050
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
3051
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
3052
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3053
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
3054
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3055
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
3056
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3057
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3058
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
3059
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3060
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
3061
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
3062
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
3063
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
3064
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
3065
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
3066
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
3067
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3068
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
3069
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3070
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3071
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3072
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
3073
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
3074
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
3075
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
3076
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
3077
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
3078
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
3079
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3080
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
3081
+ lengthSq: () => number;
3082
+ length: () => number;
3083
+ manhattanLength: () => number;
3084
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
3085
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
3086
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
3087
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
3088
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3089
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3090
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
3091
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
3092
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3093
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
3094
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3095
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3096
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3097
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
3098
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
3099
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
3100
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
3101
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
3102
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
3103
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
3104
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
3105
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
3106
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
3107
+ };
3108
+ readonly size: {
3109
+ x: number;
3110
+ y: number;
3111
+ z: number;
3112
+ set: (x: number, y: number, z: number) => import('@mlightcad/data-model').AcGeVector3d;
3113
+ setScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
3114
+ setX: (x: number) => import('@mlightcad/data-model').AcGeVector3d;
3115
+ setY: (y: number) => import('@mlightcad/data-model').AcGeVector3d;
3116
+ setZ: (z: number) => import('@mlightcad/data-model').AcGeVector3d;
3117
+ setComponent: (index: number, value: number) => import('@mlightcad/data-model').AcGeVector3d;
3118
+ getComponent: (index: number) => number;
3119
+ clone: () => import('@mlightcad/data-model').AcGeVector3d;
3120
+ copy: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
3121
+ add: (v: import('@mlightcad/data-model').AcGeVectorLike) => import('@mlightcad/data-model').AcGeVector3d;
3122
+ addScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
3123
+ addVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3124
+ addScaledVector: (v: import('@mlightcad/data-model').AcGeVector3dLike, s: number) => import('@mlightcad/data-model').AcGeVector3d;
3125
+ sub: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3126
+ subScalar: (s: number) => import('@mlightcad/data-model').AcGeVector3d;
3127
+ subVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3128
+ multiply: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3129
+ multiplyScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
3130
+ multiplyVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3131
+ applyEuler: (euler: import('@mlightcad/data-model').AcGeEuler) => import('@mlightcad/data-model').AcGeVector3d;
3132
+ applyAxisAngle: (axis: import('@mlightcad/data-model').AcGeVector3dLike, angle: number) => import('@mlightcad/data-model').AcGeVector3d;
3133
+ applyMatrix3: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
3134
+ applyNormalMatrix: (m: import('@mlightcad/data-model').AcGeMatrix2d) => import('@mlightcad/data-model').AcGeVector3d;
3135
+ applyMatrix4: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
3136
+ applyQuaternion: (q: import('@mlightcad/data-model').AcGeQuaternion) => import('@mlightcad/data-model').AcGeVector3d;
3137
+ transformDirection: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
3138
+ divide: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3139
+ divideScalar: (scalar: number) => import('@mlightcad/data-model').AcGeVector3d;
3140
+ min: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3141
+ max: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3142
+ clamp: (min: import('@mlightcad/data-model').AcGeVector3dLike, max: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3143
+ clampScalar: (minVal: number, maxVal: number) => import('@mlightcad/data-model').AcGeVector3d;
3144
+ clampLength: (min: number, max: number) => import('@mlightcad/data-model').AcGeVector3d;
3145
+ floor: () => import('@mlightcad/data-model').AcGeVector3d;
3146
+ ceil: () => import('@mlightcad/data-model').AcGeVector3d;
3147
+ round: () => import('@mlightcad/data-model').AcGeVector3d;
3148
+ roundToZero: () => import('@mlightcad/data-model').AcGeVector3d;
3149
+ negate: () => import('@mlightcad/data-model').AcGeVector3d;
3150
+ dot: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3151
+ isParallelTo: (vec: import('@mlightcad/data-model').AcGeVector3d) => boolean;
3152
+ lengthSq: () => number;
3153
+ length: () => number;
3154
+ manhattanLength: () => number;
3155
+ normalize: () => import('@mlightcad/data-model').AcGeVector3d;
3156
+ setLength: (l: number) => import('@mlightcad/data-model').AcGeVector3d;
3157
+ lerp: (v: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
3158
+ lerpVectors: (v1: import('@mlightcad/data-model').AcGeVector3dLike, v2: import('@mlightcad/data-model').AcGeVector3dLike, alpha: number) => import('@mlightcad/data-model').AcGeVector3d;
3159
+ cross: (v: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3160
+ crossVectors: (a: import('@mlightcad/data-model').AcGeVector3dLike, b: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3161
+ projectOnVector: (v: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
3162
+ projectOnPlane: (planeNormal: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
3163
+ reflect: (normal: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeVector3d;
3164
+ angleTo: (v: import('@mlightcad/data-model').AcGeVector3d) => number;
3165
+ distanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3166
+ distanceToSquared: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3167
+ manhattanDistanceTo: (v: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3168
+ setFromMatrixPosition: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
3169
+ setFromMatrixScale: (m: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeVector3d;
3170
+ setFromMatrixColumn: (m: import('@mlightcad/data-model').AcGeMatrix3d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
3171
+ setFromMatrix3Column: (m: import('@mlightcad/data-model').AcGeMatrix2d, index: number) => import('@mlightcad/data-model').AcGeVector3d;
3172
+ equals: (v: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
3173
+ fromArray: (array: number[], offset?: number) => import('@mlightcad/data-model').AcGeVector3d;
3174
+ toArray: (array?: number[] | Float32Array, offset?: number) => number[] | Float32Array;
3175
+ random: () => import('@mlightcad/data-model').AcGeVector3d;
3176
+ randomDirection: () => import('@mlightcad/data-model').AcGeVector3d;
3177
+ [Symbol.iterator]: () => Generator<number, void, unknown>;
3178
+ };
3179
+ expandByPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
3180
+ expandByVector: (vector: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
3181
+ expandByScalar: (scalar: number) => import('@mlightcad/data-model').AcGeBox3d;
3182
+ containsPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike) => boolean;
3183
+ containsBox: (box: import('@mlightcad/data-model').AcGeBox3d) => boolean;
3184
+ getParameter: (point: import('@mlightcad/data-model').AcGeVector3dLike, target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
3185
+ intersectsBox: (box: import('@mlightcad/data-model').AcGeBox3d) => boolean;
3186
+ intersectsPlane: (plane: import('@mlightcad/data-model').AcGePlane) => boolean;
3187
+ clampPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike, target: import('@mlightcad/data-model').AcGeVector3d) => import('@mlightcad/data-model').AcGeVector3d;
3188
+ distanceToPoint: (point: import('@mlightcad/data-model').AcGeVector3dLike) => number;
3189
+ intersect: (box: import('@mlightcad/data-model').AcGeBox3d) => import('@mlightcad/data-model').AcGeBox3d;
3190
+ union: (box: import('@mlightcad/data-model').AcGeBox3d) => import('@mlightcad/data-model').AcGeBox3d;
3191
+ applyMatrix4: (matrix: import('@mlightcad/data-model').AcGeMatrix3d) => import('@mlightcad/data-model').AcGeBox3d;
3192
+ translate: (offset: import('@mlightcad/data-model').AcGeVector3dLike) => import('@mlightcad/data-model').AcGeBox3d;
3193
+ equals: (box: import('@mlightcad/data-model').AcGeBox3d) => boolean;
3194
+ };
3195
+ pdmode: number;
3196
+ pdsize: number;
3197
+ read: (data: ArrayBuffer, options: import('@mlightcad/data-model').AcDbOpenDatabaseOptions, fileType?: import('@mlightcad/data-model').AcDbFileType) => Promise<void>;
3198
+ openUri: (url: string, options: import('@mlightcad/data-model').AcDbOpenDatabaseOptions) => Promise<void>;
3199
+ regen: () => Promise<void>;
3200
+ createDefaultData: (options?: import('@mlightcad/data-model').AcDbCreateDefaultDataOptions) => void;
3201
+ readonly attrs: {
3202
+ attributes: {
3203
+ [x: string]: any;
3204
+ objectId?: AcDbObjectId | undefined;
3205
+ ownerId?: AcDbObjectId | undefined;
3206
+ };
3207
+ changed: {
3208
+ [x: string]: any;
3209
+ objectId?: AcDbObjectId | undefined;
3210
+ ownerId?: AcDbObjectId | undefined;
3211
+ };
3212
+ readonly events: {
3213
+ attrChanged: {
3214
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3215
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3216
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3217
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectAttributeChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
3218
+ };
3219
+ modelChanged: {
3220
+ addEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3221
+ removeEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3222
+ replaceEventListener: (listener: (payload: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs>) => void) => void;
3223
+ dispatch: (payload?: import('@mlightcad/data-model').AcCmObjectChangedEventArgs<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined, ...args: unknown[]) => void;
3224
+ };
3225
+ };
3226
+ get: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined;
3227
+ set: {
3228
+ <A extends string>(key: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
3229
+ (key: Partial<import('@mlightcad/data-model').AcDbObjectAttrs>, options?: import('@mlightcad/data-model').AcCmObjectOptions): import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
3230
+ };
3231
+ has: (key: string) => boolean;
3232
+ hasChanged: (key?: string | undefined) => boolean;
3233
+ changedAttributes: (diff?: Partial<import('@mlightcad/data-model').AcDbObjectAttrs> | undefined) => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
3234
+ previous: <A extends string>(key: A) => import('@mlightcad/data-model').AcDbObjectAttrs[A] | null | undefined;
3235
+ previousAttributes: () => Partial<import('@mlightcad/data-model').AcDbObjectAttrs>;
3236
+ clone: () => import('@mlightcad/data-model').AcCmObject<import('@mlightcad/data-model').AcDbObjectAttrs>;
3237
+ };
3238
+ getAttr: (attrName: string) => any;
3239
+ getAttrWithoutException: (attrName: string) => any;
3240
+ setAttr: <A extends string>(attrName: A, val?: import('@mlightcad/data-model').AcDbObjectAttrs[A] | undefined) => void;
3241
+ objectId: AcDbObjectId;
3242
+ ownerId: AcDbObjectId;
3243
+ database: /*elided*/ any;
3244
+ close: () => void;
3245
+ };
3246
+ close: () => void;
3247
+ } | null>;
3248
+ id: import('vue').Ref<string | null, string | null>;
3249
+ mouse: import('vue').Ref<{
3250
+ x: number;
3251
+ y: number;
3252
+ }, {
3253
+ x: number;
3254
+ y: number;
3255
+ } | {
3256
+ x: number;
3257
+ y: number;
3258
+ }>;
3259
+ };
3260
+ //# sourceMappingURL=useHover.d.ts.map