@snaptrude/plugin-core 0.2.9 → 0.5.0

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 (269) hide show
  1. package/AGENTS.md +128 -50
  2. package/CHANGELOG.md +52 -6
  3. package/api-manifest.full.json +3999 -0
  4. package/api-manifest.json +3845 -0
  5. package/dist/api/core/buildings.d.ts +427 -0
  6. package/dist/api/core/buildings.d.ts.map +1 -0
  7. package/dist/api/core/comment/index.d.ts +230 -0
  8. package/dist/api/core/comment/index.d.ts.map +1 -0
  9. package/dist/api/core/geom/create/index.d.ts +247 -0
  10. package/dist/api/core/geom/create/index.d.ts.map +1 -0
  11. package/dist/api/core/geom/delete/index.d.ts +72 -0
  12. package/dist/api/core/geom/delete/index.d.ts.map +1 -0
  13. package/dist/api/core/geom/index.d.ts +24 -23
  14. package/dist/api/core/geom/index.d.ts.map +1 -1
  15. package/dist/api/core/geom/query/arc.d.ts +169 -0
  16. package/dist/api/core/geom/query/arc.d.ts.map +1 -0
  17. package/dist/api/core/geom/query/brep.d.ts +402 -0
  18. package/dist/api/core/geom/query/brep.d.ts.map +1 -0
  19. package/dist/api/core/geom/query/circle.d.ts +378 -0
  20. package/dist/api/core/geom/query/circle.d.ts.map +1 -0
  21. package/dist/api/core/geom/query/contour.d.ts +450 -0
  22. package/dist/api/core/geom/query/contour.d.ts.map +1 -0
  23. package/dist/api/core/geom/query/curve.d.ts +918 -0
  24. package/dist/api/core/geom/query/curve.d.ts.map +1 -0
  25. package/dist/api/core/geom/query/edge.d.ts +128 -0
  26. package/dist/api/core/geom/query/edge.d.ts.map +1 -0
  27. package/dist/api/core/geom/query/face.d.ts +363 -0
  28. package/dist/api/core/geom/query/face.d.ts.map +1 -0
  29. package/dist/api/core/geom/query/halfedge.d.ts +206 -0
  30. package/dist/api/core/geom/query/halfedge.d.ts.map +1 -0
  31. package/dist/api/core/geom/query/index.d.ts +61 -0
  32. package/dist/api/core/geom/query/index.d.ts.map +1 -0
  33. package/dist/api/core/geom/query/profile.d.ts +410 -0
  34. package/dist/api/core/geom/query/profile.d.ts.map +1 -0
  35. package/dist/api/core/geom/query/vertex.d.ts +187 -0
  36. package/dist/api/core/geom/query/vertex.d.ts.map +1 -0
  37. package/dist/api/core/geom/update/contour.d.ts +272 -0
  38. package/dist/api/core/geom/update/contour.d.ts.map +1 -0
  39. package/dist/api/core/geom/update/curve.d.ts +180 -0
  40. package/dist/api/core/geom/update/curve.d.ts.map +1 -0
  41. package/dist/api/core/geom/update/index.d.ts +27 -0
  42. package/dist/api/core/geom/update/index.d.ts.map +1 -0
  43. package/dist/api/core/geom/update/profile.d.ts +329 -0
  44. package/dist/api/core/geom/update/profile.d.ts.map +1 -0
  45. package/dist/api/core/groups.d.ts +485 -0
  46. package/dist/api/core/groups.d.ts.map +1 -0
  47. package/dist/api/core/history/index.d.ts +78 -0
  48. package/dist/api/core/history/index.d.ts.map +1 -0
  49. package/dist/api/core/index.d.ts +46 -1
  50. package/dist/api/core/index.d.ts.map +1 -1
  51. package/dist/api/core/layers.d.ts +402 -0
  52. package/dist/api/core/layers.d.ts.map +1 -0
  53. package/dist/api/core/math/quat.d.ts +111 -128
  54. package/dist/api/core/math/quat.d.ts.map +1 -1
  55. package/dist/api/core/math/vec3.d.ts +120 -102
  56. package/dist/api/core/math/vec3.d.ts.map +1 -1
  57. package/dist/api/core/project/index.d.ts +399 -0
  58. package/dist/api/core/project/index.d.ts.map +1 -0
  59. package/dist/api/core/tags.d.ts +755 -0
  60. package/dist/api/core/tags.d.ts.map +1 -0
  61. package/dist/api/core/units/index.d.ts +175 -0
  62. package/dist/api/core/units/index.d.ts.map +1 -0
  63. package/dist/api/core/zoom/index.d.ts +45 -0
  64. package/dist/api/core/zoom/index.d.ts.map +1 -0
  65. package/dist/api/design/boolean/index.d.ts +168 -0
  66. package/dist/api/design/boolean/index.d.ts.map +1 -0
  67. package/dist/api/design/create/index.d.ts +828 -0
  68. package/dist/api/design/create/index.d.ts.map +1 -0
  69. package/dist/api/design/delete/index.d.ts +63 -0
  70. package/dist/api/design/delete/index.d.ts.map +1 -0
  71. package/dist/api/design/doors/index.d.ts +268 -0
  72. package/dist/api/design/doors/index.d.ts.map +1 -0
  73. package/dist/api/design/edit/index.d.ts +49 -0
  74. package/dist/api/design/edit/index.d.ts.map +1 -0
  75. package/dist/api/design/erase/index.d.ts +160 -0
  76. package/dist/api/design/erase/index.d.ts.map +1 -0
  77. package/dist/api/design/furniture/index.d.ts +123 -0
  78. package/dist/api/design/furniture/index.d.ts.map +1 -0
  79. package/dist/api/design/index.d.ts +153 -0
  80. package/dist/api/design/index.d.ts.map +1 -0
  81. package/dist/api/design/lock.d.ts +41 -0
  82. package/dist/api/design/lock.d.ts.map +1 -0
  83. package/dist/api/design/materials/index.d.ts +297 -0
  84. package/dist/api/design/materials/index.d.ts.map +1 -0
  85. package/dist/api/design/query/geometry/index.d.ts +140 -0
  86. package/dist/api/design/query/geometry/index.d.ts.map +1 -0
  87. package/dist/api/design/query/index.d.ts +1011 -0
  88. package/dist/api/design/query/index.d.ts.map +1 -0
  89. package/dist/api/design/query/spaces.d.ts +221 -0
  90. package/dist/api/design/query/spaces.d.ts.map +1 -0
  91. package/dist/api/design/selection/index.d.ts +138 -0
  92. package/dist/api/design/selection/index.d.ts.map +1 -0
  93. package/dist/api/design/shared.d.ts +38 -0
  94. package/dist/api/design/shared.d.ts.map +1 -0
  95. package/dist/api/design/transform/index.d.ts +87 -0
  96. package/dist/api/design/transform/index.d.ts.map +1 -0
  97. package/dist/api/design/update/index.d.ts +178 -0
  98. package/dist/api/design/update/index.d.ts.map +1 -0
  99. package/dist/api/design/windows/index.d.ts +189 -0
  100. package/dist/api/design/windows/index.d.ts.map +1 -0
  101. package/dist/api/entity/buildableEnvelope.d.ts +51 -23
  102. package/dist/api/entity/buildableEnvelope.d.ts.map +1 -1
  103. package/dist/api/entity/department.d.ts +0 -98
  104. package/dist/api/entity/department.d.ts.map +1 -1
  105. package/dist/api/entity/index.d.ts +4 -9
  106. package/dist/api/entity/index.d.ts.map +1 -1
  107. package/dist/api/entity/referenceLine.d.ts +49 -106
  108. package/dist/api/entity/referenceLine.d.ts.map +1 -1
  109. package/dist/api/entity/space.d.ts +76 -828
  110. package/dist/api/entity/space.d.ts.map +1 -1
  111. package/dist/api/entity/story.d.ts +47 -37
  112. package/dist/api/entity/story.d.ts.map +1 -1
  113. package/dist/api/index.d.ts +17 -17
  114. package/dist/api/index.d.ts.map +1 -1
  115. package/dist/api/presentation/aiInspiration.d.ts +440 -0
  116. package/dist/api/presentation/aiInspiration.d.ts.map +1 -0
  117. package/dist/api/presentation/diagrams.d.ts +81 -0
  118. package/dist/api/presentation/diagrams.d.ts.map +1 -0
  119. package/dist/api/presentation/import.d.ts +113 -0
  120. package/dist/api/presentation/import.d.ts.map +1 -0
  121. package/dist/api/presentation/index.d.ts +46 -0
  122. package/dist/api/presentation/index.d.ts.map +1 -0
  123. package/dist/api/presentation/sheets.d.ts +176 -0
  124. package/dist/api/presentation/sheets.d.ts.map +1 -0
  125. package/dist/api/presentation/views.d.ts +296 -0
  126. package/dist/api/presentation/views.d.ts.map +1 -0
  127. package/dist/api/program/adjacency.d.ts +155 -0
  128. package/dist/api/program/adjacency.d.ts.map +1 -0
  129. package/dist/api/program/areas.d.ts +360 -0
  130. package/dist/api/program/areas.d.ts.map +1 -0
  131. package/dist/api/program/classification.d.ts +135 -0
  132. package/dist/api/program/classification.d.ts.map +1 -0
  133. package/dist/api/program/cores.d.ts +174 -0
  134. package/dist/api/program/cores.d.ts.map +1 -0
  135. package/dist/api/program/departments.d.ts +431 -0
  136. package/dist/api/program/departments.d.ts.map +1 -0
  137. package/dist/api/program/index.d.ts +69 -0
  138. package/dist/api/program/index.d.ts.map +1 -0
  139. package/dist/api/program/layout.d.ts +63 -0
  140. package/dist/api/program/layout.d.ts.map +1 -0
  141. package/dist/api/program/metrics.d.ts +108 -0
  142. package/dist/api/program/metrics.d.ts.map +1 -0
  143. package/dist/api/program/site.d.ts +367 -0
  144. package/dist/api/program/site.d.ts.map +1 -0
  145. package/dist/api/program/spreadsheet.d.ts +2041 -0
  146. package/dist/api/program/spreadsheet.d.ts.map +1 -0
  147. package/dist/handles.d.ts +138 -0
  148. package/dist/handles.d.ts.map +1 -0
  149. package/dist/host-utils.d.ts +7 -5
  150. package/dist/host-utils.d.ts.map +1 -1
  151. package/dist/index.cjs +3897 -1542
  152. package/dist/index.cjs.map +1 -1
  153. package/dist/index.d.ts +1 -0
  154. package/dist/index.d.ts.map +1 -1
  155. package/dist/index.js +3326 -1462
  156. package/dist/index.js.map +1 -1
  157. package/package.json +6 -2
  158. package/scripts/generate-manifest.mjs +193 -0
  159. package/scripts/generate-manifest.test.mjs +193 -0
  160. package/src/api/core/buildings.ts +485 -0
  161. package/src/api/core/comment/index.ts +258 -0
  162. package/src/api/core/geom/create/index.ts +293 -0
  163. package/src/api/core/geom/delete/index.ts +78 -0
  164. package/src/api/core/geom/index.ts +24 -23
  165. package/src/api/core/geom/query/arc.ts +169 -0
  166. package/src/api/core/geom/query/brep.ts +444 -0
  167. package/src/api/core/geom/query/circle.ts +404 -0
  168. package/src/api/core/geom/query/contour.ts +540 -0
  169. package/src/api/core/geom/query/curve.ts +1078 -0
  170. package/src/api/core/geom/query/edge.ts +130 -0
  171. package/src/api/core/geom/query/face.ts +403 -0
  172. package/src/api/core/geom/query/halfedge.ts +210 -0
  173. package/src/api/core/geom/query/index.ts +63 -0
  174. package/src/api/core/geom/query/profile.ts +473 -0
  175. package/src/api/core/geom/query/vertex.ts +205 -0
  176. package/src/api/core/geom/update/contour.ts +315 -0
  177. package/src/api/core/geom/update/curve.ts +209 -0
  178. package/src/api/core/geom/update/index.ts +29 -0
  179. package/src/api/core/geom/update/profile.ts +377 -0
  180. package/src/api/core/groups.ts +521 -0
  181. package/src/api/core/history/index.ts +84 -0
  182. package/src/api/core/index.ts +46 -1
  183. package/src/api/core/layers.ts +333 -0
  184. package/src/api/core/math/quat.ts +112 -235
  185. package/src/api/core/math/vec3.ts +124 -159
  186. package/src/api/core/project/index.ts +418 -0
  187. package/src/api/core/tags.ts +808 -0
  188. package/src/api/core/units/index.ts +164 -0
  189. package/src/api/core/zoom/index.ts +47 -0
  190. package/src/api/design/boolean/index.ts +179 -0
  191. package/src/api/design/create/index.ts +886 -0
  192. package/src/api/design/delete/index.ts +67 -0
  193. package/src/api/design/doors/index.ts +285 -0
  194. package/src/api/design/edit/index.ts +54 -0
  195. package/src/api/design/erase/index.ts +151 -0
  196. package/src/api/design/furniture/index.ts +130 -0
  197. package/src/api/design/index.ts +162 -0
  198. package/src/api/design/lock.ts +42 -0
  199. package/src/api/design/materials/index.ts +301 -0
  200. package/src/api/design/query/geometry/index.ts +166 -0
  201. package/src/api/design/query/index.ts +937 -0
  202. package/src/api/design/query/spaces.ts +132 -0
  203. package/src/api/design/selection/index.ts +144 -0
  204. package/src/api/design/shared.ts +40 -0
  205. package/src/api/design/transform/index.ts +93 -0
  206. package/src/api/design/update/index.ts +117 -0
  207. package/src/api/design/windows/index.ts +207 -0
  208. package/src/api/entity/buildableEnvelope.ts +64 -23
  209. package/src/api/entity/department.ts +0 -113
  210. package/src/api/entity/index.ts +4 -9
  211. package/src/api/entity/referenceLine.ts +50 -38
  212. package/src/api/entity/space.ts +84 -440
  213. package/src/api/entity/story.ts +53 -42
  214. package/src/api/index.ts +17 -17
  215. package/src/api/presentation/aiInspiration.ts +362 -0
  216. package/src/api/presentation/diagrams.ts +84 -0
  217. package/src/api/presentation/import.ts +112 -0
  218. package/src/api/presentation/index.ts +48 -0
  219. package/src/api/presentation/sheets.ts +198 -0
  220. package/src/api/presentation/views.ts +303 -0
  221. package/src/api/program/adjacency.ts +164 -0
  222. package/src/api/program/areas.ts +335 -0
  223. package/src/api/program/classification.ts +138 -0
  224. package/src/api/program/cores.ts +171 -0
  225. package/src/api/program/departments.ts +465 -0
  226. package/src/api/program/index.ts +71 -0
  227. package/src/api/program/layout.ts +68 -0
  228. package/src/api/program/metrics.ts +120 -0
  229. package/src/api/program/site.ts +326 -0
  230. package/src/api/program/spreadsheet.ts +2075 -0
  231. package/src/handles.ts +148 -0
  232. package/src/host-utils.ts +10 -6
  233. package/src/index.ts +1 -0
  234. package/dist/api/core/geom/arc.d.ts +0 -81
  235. package/dist/api/core/geom/arc.d.ts.map +0 -1
  236. package/dist/api/core/geom/curve.d.ts +0 -70
  237. package/dist/api/core/geom/curve.d.ts.map +0 -1
  238. package/dist/api/core/geom/line.d.ts +0 -56
  239. package/dist/api/core/geom/line.d.ts.map +0 -1
  240. package/dist/api/core/geom/profile.d.ts +0 -121
  241. package/dist/api/core/geom/profile.d.ts.map +0 -1
  242. package/dist/api/documentation/aiInspiration.d.ts +0 -2155
  243. package/dist/api/documentation/aiInspiration.d.ts.map +0 -1
  244. package/dist/api/documentation/index.d.ts +0 -13
  245. package/dist/api/documentation/index.d.ts.map +0 -1
  246. package/dist/api/tools/copy.d.ts +0 -59
  247. package/dist/api/tools/copy.d.ts.map +0 -1
  248. package/dist/api/tools/index.d.ts +0 -29
  249. package/dist/api/tools/index.d.ts.map +0 -1
  250. package/dist/api/tools/offset.d.ts +0 -43
  251. package/dist/api/tools/offset.d.ts.map +0 -1
  252. package/dist/api/tools/selection.d.ts +0 -48
  253. package/dist/api/tools/selection.d.ts.map +0 -1
  254. package/dist/api/tools/transform.d.ts +0 -114
  255. package/dist/api/tools/transform.d.ts.map +0 -1
  256. package/dist/api/units/index.d.ts +0 -163
  257. package/dist/api/units/index.d.ts.map +0 -1
  258. package/src/api/core/geom/arc.ts +0 -70
  259. package/src/api/core/geom/curve.ts +0 -41
  260. package/src/api/core/geom/line.ts +0 -53
  261. package/src/api/core/geom/profile.ts +0 -94
  262. package/src/api/documentation/aiInspiration.ts +0 -871
  263. package/src/api/documentation/index.ts +0 -15
  264. package/src/api/tools/copy.ts +0 -55
  265. package/src/api/tools/index.ts +0 -35
  266. package/src/api/tools/offset.ts +0 -43
  267. package/src/api/tools/selection.ts +0 -51
  268. package/src/api/tools/transform.ts +0 -117
  269. package/src/api/units/index.ts +0 -163
@@ -0,0 +1,206 @@
1
+ import * as z from "zod";
2
+ import { PluginApiReturn } from "../../../../types";
3
+ import { HalfEdgeHandle, VertexHandle, EdgeHandle, FaceHandle } from "../../../../handles";
4
+ /**
5
+ * Half-edge queries — walk and read a single BREP half-edge (all-handle model, §11).
6
+ * A {@linkcode HalfEdgeHandle} is minted by walking from a brep/face/edge/vertex
7
+ * handle; it is session-ephemeral and goes stale on undo/redo/re-topologize.
8
+ *
9
+ * The kind token is all-lowercase `"halfedge"` (§6.1 — no camelCase namespaces).
10
+ * Traversals (`getNext`/`getPrev`/`getFlip`) return `null` on a boundary or a
11
+ * malformed chain rather than throwing (§6, reads never throw).
12
+ *
13
+ * Accessed via `snaptrude.core.geom.query.halfedge`.
14
+ */
15
+ export declare abstract class PluginGeomQueryHalfEdgeApi {
16
+ constructor();
17
+ /**
18
+ * Get the next half-edge around the face loop.
19
+ * @param halfEdge The half-edge to walk from
20
+ * @returns The next half-edge as a {@linkcode HalfEdgeHandle}, or `null` on a malformed chain
21
+ *
22
+ * # Example
23
+ * ```ts
24
+ * const [wall] = await snaptrude.design.query.listWalls()
25
+ * const brep = await snaptrude.design.query.geometry.getBrep(wall)
26
+ * if (brep) {
27
+ * const [face] = await snaptrude.core.geom.query.brep.listFaces(brep)
28
+ * const [he] = await snaptrude.core.geom.query.face.listHalfEdges(face)
29
+ * const next = await snaptrude.core.geom.query.halfedge.getNext(he)
30
+ * if (next) {
31
+ * const vertex = await snaptrude.core.geom.query.halfedge.getVertex(next)
32
+ * }
33
+ * }
34
+ * ```
35
+ */
36
+ abstract getNext(halfEdge: HalfEdgeHandle): PluginApiReturn<HalfEdgeHandle | null>;
37
+ /**
38
+ * Get the previous half-edge around the face loop.
39
+ * @param halfEdge The half-edge to walk from
40
+ * @returns The previous half-edge as a {@linkcode HalfEdgeHandle}, or `null` on a malformed chain
41
+ *
42
+ * # Example
43
+ * ```ts
44
+ * const [wall] = await snaptrude.design.query.listWalls()
45
+ * const brep = await snaptrude.design.query.geometry.getBrep(wall)
46
+ * if (brep) {
47
+ * const [he] = await snaptrude.core.geom.query.brep.listHalfEdges(brep)
48
+ * const prev = await snaptrude.core.geom.query.halfedge.getPrev(he)
49
+ * if (prev) {
50
+ * const edge = await snaptrude.core.geom.query.halfedge.getEdge(prev)
51
+ * }
52
+ * }
53
+ * ```
54
+ */
55
+ abstract getPrev(halfEdge: HalfEdgeHandle): PluginApiReturn<HalfEdgeHandle | null>;
56
+ /**
57
+ * Get the flip (opposite) half-edge of the shared edge.
58
+ * @param halfEdge The half-edge to flip
59
+ * @returns The flip half-edge as a {@linkcode HalfEdgeHandle}, or `null` on a boundary
60
+ *
61
+ * # Example
62
+ * ```ts
63
+ * const [wall] = await snaptrude.design.query.listWalls()
64
+ * const brep = await snaptrude.design.query.geometry.getBrep(wall)
65
+ * if (brep) {
66
+ * const [he] = await snaptrude.core.geom.query.brep.listHalfEdges(brep)
67
+ * const flip = await snaptrude.core.geom.query.halfedge.getFlip(he)
68
+ * if (flip) {
69
+ * // cross the shared edge into the neighbouring face
70
+ * const neighbourFace = await snaptrude.core.geom.query.halfedge.getFace(flip)
71
+ * }
72
+ * }
73
+ * ```
74
+ */
75
+ abstract getFlip(halfEdge: HalfEdgeHandle): PluginApiReturn<HalfEdgeHandle | null>;
76
+ /**
77
+ * Get the tail vertex of a half-edge.
78
+ * @param halfEdge The half-edge to read
79
+ * @returns The vertex as a {@linkcode VertexHandle}
80
+ *
81
+ * # Example
82
+ * ```ts
83
+ * const [wall] = await snaptrude.design.query.listWalls()
84
+ * const brep = await snaptrude.design.query.geometry.getBrep(wall)
85
+ * if (brep) {
86
+ * const [he] = await snaptrude.core.geom.query.brep.listHalfEdges(brep)
87
+ * const vertex = await snaptrude.core.geom.query.halfedge.getVertex(he)
88
+ * const pos = await snaptrude.core.geom.query.vertex.getPosition(brep, vertex)
89
+ * }
90
+ * ```
91
+ */
92
+ abstract getVertex(halfEdge: HalfEdgeHandle): PluginApiReturn<VertexHandle>;
93
+ /**
94
+ * Get the edge of a half-edge.
95
+ * @param halfEdge The half-edge to read
96
+ * @returns The edge as an {@linkcode EdgeHandle}
97
+ *
98
+ * # Example
99
+ * ```ts
100
+ * const [wall] = await snaptrude.design.query.listWalls()
101
+ * const brep = await snaptrude.design.query.geometry.getBrep(wall)
102
+ * if (brep) {
103
+ * const [he] = await snaptrude.core.geom.query.brep.listHalfEdges(brep)
104
+ * const edge = await snaptrude.core.geom.query.halfedge.getEdge(he)
105
+ * const faces = await snaptrude.core.geom.query.edge.listFaces(edge)
106
+ * }
107
+ * ```
108
+ */
109
+ abstract getEdge(halfEdge: HalfEdgeHandle): PluginApiReturn<EdgeHandle>;
110
+ /**
111
+ * Get the face of a half-edge.
112
+ * @param halfEdge The half-edge to read
113
+ * @returns The face as a {@linkcode FaceHandle}
114
+ *
115
+ * # Example
116
+ * ```ts
117
+ * const [wall] = await snaptrude.design.query.listWalls()
118
+ * const brep = await snaptrude.design.query.geometry.getBrep(wall)
119
+ * if (brep) {
120
+ * const [he] = await snaptrude.core.geom.query.brep.listHalfEdges(brep)
121
+ * const face = await snaptrude.core.geom.query.halfedge.getFace(he)
122
+ * const index = await snaptrude.core.geom.query.face.getIndex(face)
123
+ * }
124
+ * ```
125
+ */
126
+ abstract getFace(halfEdge: HalfEdgeHandle): PluginApiReturn<FaceHandle>;
127
+ /**
128
+ * Test whether a half-edge lies on the brep boundary (has no flip).
129
+ * @param halfEdge The half-edge to test
130
+ * @returns `true` if on the boundary, otherwise `false`
131
+ *
132
+ * # Example
133
+ * ```ts
134
+ * const [wall] = await snaptrude.design.query.listWalls()
135
+ * const brep = await snaptrude.design.query.geometry.getBrep(wall)
136
+ * if (brep) {
137
+ * const halfEdges = await snaptrude.core.geom.query.brep.listHalfEdges(brep)
138
+ * let boundary = 0
139
+ * for (const he of halfEdges) {
140
+ * if (await snaptrude.core.geom.query.halfedge.isOnBoundary(he)) boundary++
141
+ * }
142
+ * console.log("boundary half-edges:", boundary)
143
+ * }
144
+ * ```
145
+ */
146
+ abstract isOnBoundary(halfEdge: HalfEdgeHandle): PluginApiReturn<boolean>;
147
+ /**
148
+ * Test whether a half-edge is the forward (primary) half-edge of its edge —
149
+ * i.e. `edge.getHalfEdge() === thisHalfEdge`.
150
+ * @param halfEdge The half-edge to test
151
+ * @returns `true` if forward, otherwise `false`
152
+ *
153
+ * # Example
154
+ * ```ts
155
+ * const [wall] = await snaptrude.design.query.listWalls()
156
+ * const brep = await snaptrude.design.query.geometry.getBrep(wall)
157
+ * if (brep) {
158
+ * const [he] = await snaptrude.core.geom.query.brep.listHalfEdges(brep)
159
+ * const forward = await snaptrude.core.geom.query.halfedge.isForward(he)
160
+ * console.log(forward ? "primary half-edge" : "flip half-edge")
161
+ * }
162
+ * ```
163
+ */
164
+ abstract isForward(halfEdge: HalfEdgeHandle): PluginApiReturn<boolean>;
165
+ }
166
+ /** Arguments for {@linkcode PluginGeomQueryHalfEdgeApi.getNext}. `{ halfEdge: HalfEdgeHandle }` */
167
+ export declare const PluginGeomQueryHalfEdgeGetNextArgs: z.ZodObject<{
168
+ halfEdge: z.ZodPipe<z.ZodString, z.ZodTransform<import("../../../..").Handle<"halfedge">, string>>;
169
+ }, z.core.$strip>;
170
+ export type PluginGeomQueryHalfEdgeGetNextArgs = z.infer<typeof PluginGeomQueryHalfEdgeGetNextArgs>;
171
+ /** Arguments for {@linkcode PluginGeomQueryHalfEdgeApi.getPrev}. `{ halfEdge: HalfEdgeHandle }` */
172
+ export declare const PluginGeomQueryHalfEdgeGetPrevArgs: z.ZodObject<{
173
+ halfEdge: z.ZodPipe<z.ZodString, z.ZodTransform<import("../../../..").Handle<"halfedge">, string>>;
174
+ }, z.core.$strip>;
175
+ export type PluginGeomQueryHalfEdgeGetPrevArgs = z.infer<typeof PluginGeomQueryHalfEdgeGetPrevArgs>;
176
+ /** Arguments for {@linkcode PluginGeomQueryHalfEdgeApi.getFlip}. `{ halfEdge: HalfEdgeHandle }` */
177
+ export declare const PluginGeomQueryHalfEdgeGetFlipArgs: z.ZodObject<{
178
+ halfEdge: z.ZodPipe<z.ZodString, z.ZodTransform<import("../../../..").Handle<"halfedge">, string>>;
179
+ }, z.core.$strip>;
180
+ export type PluginGeomQueryHalfEdgeGetFlipArgs = z.infer<typeof PluginGeomQueryHalfEdgeGetFlipArgs>;
181
+ /** Arguments for {@linkcode PluginGeomQueryHalfEdgeApi.getVertex}. `{ halfEdge: HalfEdgeHandle }` */
182
+ export declare const PluginGeomQueryHalfEdgeGetVertexArgs: z.ZodObject<{
183
+ halfEdge: z.ZodPipe<z.ZodString, z.ZodTransform<import("../../../..").Handle<"halfedge">, string>>;
184
+ }, z.core.$strip>;
185
+ export type PluginGeomQueryHalfEdgeGetVertexArgs = z.infer<typeof PluginGeomQueryHalfEdgeGetVertexArgs>;
186
+ /** Arguments for {@linkcode PluginGeomQueryHalfEdgeApi.getEdge}. `{ halfEdge: HalfEdgeHandle }` */
187
+ export declare const PluginGeomQueryHalfEdgeGetEdgeArgs: z.ZodObject<{
188
+ halfEdge: z.ZodPipe<z.ZodString, z.ZodTransform<import("../../../..").Handle<"halfedge">, string>>;
189
+ }, z.core.$strip>;
190
+ export type PluginGeomQueryHalfEdgeGetEdgeArgs = z.infer<typeof PluginGeomQueryHalfEdgeGetEdgeArgs>;
191
+ /** Arguments for {@linkcode PluginGeomQueryHalfEdgeApi.getFace}. `{ halfEdge: HalfEdgeHandle }` */
192
+ export declare const PluginGeomQueryHalfEdgeGetFaceArgs: z.ZodObject<{
193
+ halfEdge: z.ZodPipe<z.ZodString, z.ZodTransform<import("../../../..").Handle<"halfedge">, string>>;
194
+ }, z.core.$strip>;
195
+ export type PluginGeomQueryHalfEdgeGetFaceArgs = z.infer<typeof PluginGeomQueryHalfEdgeGetFaceArgs>;
196
+ /** Arguments for {@linkcode PluginGeomQueryHalfEdgeApi.isOnBoundary}. `{ halfEdge: HalfEdgeHandle }` */
197
+ export declare const PluginGeomQueryHalfEdgeIsOnBoundaryArgs: z.ZodObject<{
198
+ halfEdge: z.ZodPipe<z.ZodString, z.ZodTransform<import("../../../..").Handle<"halfedge">, string>>;
199
+ }, z.core.$strip>;
200
+ export type PluginGeomQueryHalfEdgeIsOnBoundaryArgs = z.infer<typeof PluginGeomQueryHalfEdgeIsOnBoundaryArgs>;
201
+ /** Arguments for {@linkcode PluginGeomQueryHalfEdgeApi.isForward}. `{ halfEdge: HalfEdgeHandle }` */
202
+ export declare const PluginGeomQueryHalfEdgeIsForwardArgs: z.ZodObject<{
203
+ halfEdge: z.ZodPipe<z.ZodString, z.ZodTransform<import("../../../..").Handle<"halfedge">, string>>;
204
+ }, z.core.$strip>;
205
+ export type PluginGeomQueryHalfEdgeIsForwardArgs = z.infer<typeof PluginGeomQueryHalfEdgeIsForwardArgs>;
206
+ //# sourceMappingURL=halfedge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"halfedge.d.ts","sourceRoot":"","sources":["../../../../../src/api/core/geom/query/halfedge.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAA;AACxB,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AACnD,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAA;AAE1F;;;;;;;;;;GAUG;AACH,8BAAsB,0BAA0B;;IAG9C;;;;;;;;;;;;;;;;;;OAkBG;aACa,OAAO,CAAC,QAAQ,EAAE,cAAc,GAAG,eAAe,CAAC,cAAc,GAAG,IAAI,CAAC;IAEzF;;;;;;;;;;;;;;;;;OAiBG;aACa,OAAO,CAAC,QAAQ,EAAE,cAAc,GAAG,eAAe,CAAC,cAAc,GAAG,IAAI,CAAC;IAEzF;;;;;;;;;;;;;;;;;;OAkBG;aACa,OAAO,CAAC,QAAQ,EAAE,cAAc,GAAG,eAAe,CAAC,cAAc,GAAG,IAAI,CAAC;IAEzF;;;;;;;;;;;;;;;OAeG;aACa,SAAS,CAAC,QAAQ,EAAE,cAAc,GAAG,eAAe,CAAC,YAAY,CAAC;IAElF;;;;;;;;;;;;;;;OAeG;aACa,OAAO,CAAC,QAAQ,EAAE,cAAc,GAAG,eAAe,CAAC,UAAU,CAAC;IAE9E;;;;;;;;;;;;;;;OAeG;aACa,OAAO,CAAC,QAAQ,EAAE,cAAc,GAAG,eAAe,CAAC,UAAU,CAAC;IAE9E;;;;;;;;;;;;;;;;;;OAkBG;aACa,YAAY,CAAC,QAAQ,EAAE,cAAc,GAAG,eAAe,CAAC,OAAO,CAAC;IAEhF;;;;;;;;;;;;;;;;OAgBG;aACa,SAAS,CAAC,QAAQ,EAAE,cAAc,GAAG,eAAe,CAAC,OAAO,CAAC;CAC9E;AAID,mGAAmG;AACnG,eAAO,MAAM,kCAAkC;;iBAAQ,CAAA;AACvD,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAA;AAEnG,mGAAmG;AACnG,eAAO,MAAM,kCAAkC;;iBAAQ,CAAA;AACvD,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAA;AAEnG,mGAAmG;AACnG,eAAO,MAAM,kCAAkC;;iBAAQ,CAAA;AACvD,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAA;AAEnG,qGAAqG;AACrG,eAAO,MAAM,oCAAoC;;iBAAQ,CAAA;AACzD,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oCAAoC,CAAC,CAAA;AAEvG,mGAAmG;AACnG,eAAO,MAAM,kCAAkC;;iBAAQ,CAAA;AACvD,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAA;AAEnG,mGAAmG;AACnG,eAAO,MAAM,kCAAkC;;iBAAQ,CAAA;AACvD,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAA;AAEnG,wGAAwG;AACxG,eAAO,MAAM,uCAAuC;;iBAAQ,CAAA;AAC5D,MAAM,MAAM,uCAAuC,GAAG,CAAC,CAAC,KAAK,CAC3D,OAAO,uCAAuC,CAC/C,CAAA;AAED,qGAAqG;AACrG,eAAO,MAAM,oCAAoC;;iBAAQ,CAAA;AACzD,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oCAAoC,CAAC,CAAA"}
@@ -0,0 +1,61 @@
1
+ import { PluginGeomQueryCurveApi } from "./curve";
2
+ import { PluginGeomQueryArcApi } from "./arc";
3
+ import { PluginGeomQueryCircleApi } from "./circle";
4
+ import { PluginGeomQueryProfileApi } from "./profile";
5
+ import { PluginGeomQueryContourApi } from "./contour";
6
+ import { PluginGeomQueryBrepApi } from "./brep";
7
+ import { PluginGeomQueryFaceApi } from "./face";
8
+ import { PluginGeomQueryEdgeApi } from "./edge";
9
+ import { PluginGeomQueryHalfEdgeApi } from "./halfedge";
10
+ import { PluginGeomQueryVertexApi } from "./vertex";
11
+ /**
12
+ * Geometry-kernel query namespace — read geometry, topology, and relationships as
13
+ * plain values / child handles (all-handle model, §11). No query mutates its inputs.
14
+ *
15
+ * - {@linkcode PluginGeomQueryApi.curve} — shared line/arc queries + two-curve relationships
16
+ * - {@linkcode PluginGeomQueryApi.arc} — arc-specific reads
17
+ * - {@linkcode PluginGeomQueryApi.circle} — circle-specific reads
18
+ * - {@linkcode PluginGeomQueryApi.profile} — profile reads
19
+ * - {@linkcode PluginGeomQueryApi.contour} — contour reads (outer profile + holes)
20
+ * - {@linkcode PluginGeomQueryApi.brep} — BREP mesh topology + geometry
21
+ * - {@linkcode PluginGeomQueryApi.face} — BREP face reads
22
+ * - {@linkcode PluginGeomQueryApi.edge} — BREP edge reads
23
+ * - {@linkcode PluginGeomQueryApi.halfedge} — BREP half-edge walks
24
+ * - {@linkcode PluginGeomQueryApi.vertex} — BREP vertex reads
25
+ *
26
+ * Accessed via `snaptrude.core.geom.query`.
27
+ */
28
+ export declare abstract class PluginGeomQueryApi {
29
+ /** Shared curve queries (line or arc) and relationships. See {@linkcode PluginGeomQueryCurveApi}. */
30
+ abstract curve: PluginGeomQueryCurveApi;
31
+ /** Arc-specific queries. See {@linkcode PluginGeomQueryArcApi}. */
32
+ abstract arc: PluginGeomQueryArcApi;
33
+ /** Circle-specific queries. See {@linkcode PluginGeomQueryCircleApi}. */
34
+ abstract circle: PluginGeomQueryCircleApi;
35
+ /** Profile queries. See {@linkcode PluginGeomQueryProfileApi}. */
36
+ abstract profile: PluginGeomQueryProfileApi;
37
+ /** Contour queries. See {@linkcode PluginGeomQueryContourApi}. */
38
+ abstract contour: PluginGeomQueryContourApi;
39
+ /** BREP mesh topology + geometry queries. See {@linkcode PluginGeomQueryBrepApi}. */
40
+ abstract brep: PluginGeomQueryBrepApi;
41
+ /** BREP face queries. See {@linkcode PluginGeomQueryFaceApi}. */
42
+ abstract face: PluginGeomQueryFaceApi;
43
+ /** BREP edge queries. See {@linkcode PluginGeomQueryEdgeApi}. */
44
+ abstract edge: PluginGeomQueryEdgeApi;
45
+ /** BREP half-edge walks. See {@linkcode PluginGeomQueryHalfEdgeApi}. */
46
+ abstract halfedge: PluginGeomQueryHalfEdgeApi;
47
+ /** BREP vertex queries. See {@linkcode PluginGeomQueryVertexApi}. */
48
+ abstract vertex: PluginGeomQueryVertexApi;
49
+ constructor();
50
+ }
51
+ export * from "./curve";
52
+ export * from "./arc";
53
+ export * from "./circle";
54
+ export * from "./profile";
55
+ export * from "./contour";
56
+ export * from "./brep";
57
+ export * from "./face";
58
+ export * from "./edge";
59
+ export * from "./halfedge";
60
+ export * from "./vertex";
61
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/api/core/geom/query/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAA;AACjD,OAAO,EAAE,qBAAqB,EAAE,MAAM,OAAO,CAAA;AAC7C,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAA;AACnD,OAAO,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAA;AACrD,OAAO,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAA;AACrD,OAAO,EAAE,sBAAsB,EAAE,MAAM,QAAQ,CAAA;AAC/C,OAAO,EAAE,sBAAsB,EAAE,MAAM,QAAQ,CAAA;AAC/C,OAAO,EAAE,sBAAsB,EAAE,MAAM,QAAQ,CAAA;AAC/C,OAAO,EAAE,0BAA0B,EAAE,MAAM,YAAY,CAAA;AACvD,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAA;AAEnD;;;;;;;;;;;;;;;;GAgBG;AACH,8BAAsB,kBAAkB;IACtC,qGAAqG;IACrG,SAAgB,KAAK,EAAE,uBAAuB,CAAA;IAC9C,mEAAmE;IACnE,SAAgB,GAAG,EAAE,qBAAqB,CAAA;IAC1C,yEAAyE;IACzE,SAAgB,MAAM,EAAE,wBAAwB,CAAA;IAChD,kEAAkE;IAClE,SAAgB,OAAO,EAAE,yBAAyB,CAAA;IAClD,kEAAkE;IAClE,SAAgB,OAAO,EAAE,yBAAyB,CAAA;IAClD,qFAAqF;IACrF,SAAgB,IAAI,EAAE,sBAAsB,CAAA;IAC5C,iEAAiE;IACjE,SAAgB,IAAI,EAAE,sBAAsB,CAAA;IAC5C,iEAAiE;IACjE,SAAgB,IAAI,EAAE,sBAAsB,CAAA;IAC5C,wEAAwE;IACxE,SAAgB,QAAQ,EAAE,0BAA0B,CAAA;IACpD,qEAAqE;IACrE,SAAgB,MAAM,EAAE,wBAAwB,CAAA;;CAGjD;AAED,cAAc,SAAS,CAAA;AACvB,cAAc,OAAO,CAAA;AACrB,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA;AACtB,cAAc,YAAY,CAAA;AAC1B,cAAc,UAAU,CAAA"}