@snaptrude/plugin-core 0.7.1 → 0.9.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.
- package/CHANGELOG.md +29 -0
- package/api-manifest.full.json +7703 -0
- package/api-manifest.json +2946 -259
- package/dist/api/analysis/daylight.d.ts +603 -0
- package/dist/api/analysis/daylight.d.ts.map +1 -0
- package/dist/api/analysis/heatmaps.d.ts +438 -14
- package/dist/api/analysis/heatmaps.d.ts.map +1 -1
- package/dist/api/analysis/index.d.ts +15 -0
- package/dist/api/analysis/index.d.ts.map +1 -1
- package/dist/api/analysis/solar.d.ts +249 -0
- package/dist/api/analysis/solar.d.ts.map +1 -0
- package/dist/api/analysis/weather.d.ts +193 -0
- package/dist/api/analysis/weather.d.ts.map +1 -0
- package/dist/api/core/camera/index.d.ts +245 -0
- package/dist/api/core/camera/index.d.ts.map +1 -0
- package/dist/api/core/comment/index.d.ts +105 -2
- package/dist/api/core/comment/index.d.ts.map +1 -1
- package/dist/api/core/geom/create/index.d.ts +331 -14
- package/dist/api/core/geom/create/index.d.ts.map +1 -1
- package/dist/api/core/geom/delete/index.d.ts +8 -2
- package/dist/api/core/geom/delete/index.d.ts.map +1 -1
- package/dist/api/core/geom/query/arc.d.ts +5 -5
- package/dist/api/core/geom/query/brep.d.ts +18 -18
- package/dist/api/core/geom/query/circle.d.ts +18 -18
- package/dist/api/core/geom/query/contour.d.ts +20 -20
- package/dist/api/core/geom/query/curve.d.ts +49 -49
- package/dist/api/core/geom/query/edge.d.ts +5 -5
- package/dist/api/core/geom/query/face.d.ts +16 -16
- package/dist/api/core/geom/query/halfedge.d.ts +8 -8
- package/dist/api/core/geom/query/profile.d.ts +19 -19
- package/dist/api/core/geom/query/vertex.d.ts +8 -8
- package/dist/api/core/geom/update/contour.d.ts +14 -14
- package/dist/api/core/geom/update/curve.d.ts +7 -7
- package/dist/api/core/geom/update/profile.d.ts +16 -16
- package/dist/api/core/handles/index.d.ts +210 -0
- package/dist/api/core/handles/index.d.ts.map +1 -0
- package/dist/api/core/index.d.ts +24 -0
- package/dist/api/core/index.d.ts.map +1 -1
- package/dist/api/core/io/export/index.d.ts +134 -0
- package/dist/api/core/io/export/index.d.ts.map +1 -0
- package/dist/api/core/io/import/index.d.ts +62 -1
- package/dist/api/core/io/import/index.d.ts.map +1 -1
- package/dist/api/core/io/index.d.ts +5 -0
- package/dist/api/core/io/index.d.ts.map +1 -1
- package/dist/api/core/layers.d.ts +7 -7
- package/dist/api/core/mode/index.d.ts +99 -0
- package/dist/api/core/mode/index.d.ts.map +1 -0
- package/dist/api/core/proposals/index.d.ts +65 -9
- package/dist/api/core/proposals/index.d.ts.map +1 -1
- package/dist/api/core/storeys/index.d.ts +251 -0
- package/dist/api/core/storeys/index.d.ts.map +1 -0
- package/dist/api/core/tags.d.ts +24 -0
- package/dist/api/core/tags.d.ts.map +1 -1
- package/dist/api/core/user.d.ts +44 -0
- package/dist/api/core/user.d.ts.map +1 -0
- package/dist/api/core/zoom/index.d.ts +4 -0
- package/dist/api/core/zoom/index.d.ts.map +1 -1
- package/dist/api/design/boolean/index.d.ts +4 -4
- package/dist/api/design/create/index.d.ts +253 -47
- package/dist/api/design/create/index.d.ts.map +1 -1
- package/dist/api/design/delete/index.d.ts +3 -0
- package/dist/api/design/delete/index.d.ts.map +1 -1
- package/dist/api/design/doors/index.d.ts +36 -0
- package/dist/api/design/doors/index.d.ts.map +1 -1
- package/dist/api/design/edit/index.d.ts +1 -1
- package/dist/api/design/erase/index.d.ts +2 -2
- package/dist/api/design/furniture/index.d.ts +114 -3
- package/dist/api/design/furniture/index.d.ts.map +1 -1
- package/dist/api/design/index.d.ts +10 -0
- package/dist/api/design/index.d.ts.map +1 -1
- package/dist/api/design/materials/index.d.ts +111 -14
- package/dist/api/design/materials/index.d.ts.map +1 -1
- package/dist/api/design/query/geometry/index.d.ts +112 -0
- package/dist/api/design/query/geometry/index.d.ts.map +1 -1
- package/dist/api/design/query/index.d.ts +35 -1
- package/dist/api/design/query/index.d.ts.map +1 -1
- package/dist/api/design/query/referenceLines.d.ts +45 -0
- package/dist/api/design/query/referenceLines.d.ts.map +1 -0
- package/dist/api/design/query/spaces.d.ts +178 -5
- package/dist/api/design/query/spaces.d.ts.map +1 -1
- package/dist/api/design/transform/index.d.ts +95 -14
- package/dist/api/design/transform/index.d.ts.map +1 -1
- package/dist/api/design/types/index.d.ts +181 -0
- package/dist/api/design/types/index.d.ts.map +1 -0
- package/dist/api/design/update/index.d.ts +385 -2
- package/dist/api/design/update/index.d.ts.map +1 -1
- package/dist/api/design/visibility.d.ts +98 -0
- package/dist/api/design/visibility.d.ts.map +1 -0
- package/dist/api/entity/buildableEnvelope.d.ts +4 -0
- package/dist/api/entity/buildableEnvelope.d.ts.map +1 -1
- package/dist/api/entity/referenceLine.d.ts +10 -2
- package/dist/api/entity/referenceLine.d.ts.map +1 -1
- package/dist/api/entity/space.d.ts +19 -19
- package/dist/api/entity/story.d.ts +148 -15
- package/dist/api/entity/story.d.ts.map +1 -1
- package/dist/api/index.d.ts +5 -0
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/presentation/annotate.d.ts +448 -0
- package/dist/api/presentation/annotate.d.ts.map +1 -0
- package/dist/api/presentation/diagrams.d.ts +49 -8
- package/dist/api/presentation/diagrams.d.ts.map +1 -1
- package/dist/api/presentation/export.d.ts +108 -0
- package/dist/api/presentation/export.d.ts.map +1 -0
- package/dist/api/presentation/import.d.ts +6 -0
- package/dist/api/presentation/import.d.ts.map +1 -1
- package/dist/api/presentation/index.d.ts +47 -0
- package/dist/api/presentation/index.d.ts.map +1 -1
- package/dist/api/presentation/placedViews.d.ts +370 -0
- package/dist/api/presentation/placedViews.d.ts.map +1 -0
- package/dist/api/presentation/shapes.d.ts +481 -0
- package/dist/api/presentation/shapes.d.ts.map +1 -0
- package/dist/api/presentation/sheets.d.ts +410 -13
- package/dist/api/presentation/sheets.d.ts.map +1 -1
- package/dist/api/presentation/views.d.ts +165 -10
- package/dist/api/presentation/views.d.ts.map +1 -1
- package/dist/api/program/areas.d.ts +63 -3
- package/dist/api/program/areas.d.ts.map +1 -1
- package/dist/api/program/cores.d.ts +3 -99
- package/dist/api/program/cores.d.ts.map +1 -1
- package/dist/api/program/index.d.ts +2 -2
- package/dist/api/program/index.d.ts.map +1 -1
- package/dist/api/program/layout.d.ts +172 -12
- package/dist/api/program/layout.d.ts.map +1 -1
- package/dist/api/program/site.d.ts +105 -8
- package/dist/api/program/site.d.ts.map +1 -1
- package/dist/api/program/spreadsheet.d.ts +365 -41
- package/dist/api/program/spreadsheet.d.ts.map +1 -1
- package/dist/api/workspace/index.d.ts +460 -0
- package/dist/api/workspace/index.d.ts.map +1 -0
- package/dist/handles.d.ts +64 -25
- package/dist/handles.d.ts.map +1 -1
- package/dist/index.cjs +3210 -1671
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3008 -1666
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
- package/scripts/generate-manifest.mjs +45 -0
- package/src/api/analysis/daylight.ts +470 -0
- package/src/api/analysis/heatmaps.ts +444 -17
- package/src/api/analysis/index.ts +15 -0
- package/src/api/analysis/solar.ts +237 -0
- package/src/api/analysis/weather.ts +179 -0
- package/src/api/core/camera/index.ts +251 -0
- package/src/api/core/comment/index.ts +120 -2
- package/src/api/core/geom/create/index.ts +344 -1
- package/src/api/core/geom/delete/index.ts +6 -0
- package/src/api/core/handles/index.ts +233 -0
- package/src/api/core/index.ts +24 -0
- package/src/api/core/io/export/index.ts +126 -0
- package/src/api/core/io/import/index.ts +64 -0
- package/src/api/core/io/index.ts +5 -0
- package/src/api/core/mode/index.ts +96 -0
- package/src/api/core/proposals/index.ts +71 -11
- package/src/api/core/storeys/index.ts +279 -0
- package/src/api/core/tags.ts +27 -0
- package/src/api/core/user.ts +46 -0
- package/src/api/core/zoom/index.ts +4 -0
- package/src/api/design/create/index.ts +303 -36
- package/src/api/design/delete/index.ts +3 -0
- package/src/api/design/doors/index.ts +40 -0
- package/src/api/design/furniture/index.ts +127 -3
- package/src/api/design/index.ts +10 -0
- package/src/api/design/materials/index.ts +157 -30
- package/src/api/design/query/geometry/index.ts +125 -3
- package/src/api/design/query/index.ts +37 -7
- package/src/api/design/query/referenceLines.ts +52 -0
- package/src/api/design/query/spaces.ts +143 -0
- package/src/api/design/transform/index.ts +101 -12
- package/src/api/design/types/index.ts +156 -0
- package/src/api/design/update/index.ts +467 -6
- package/src/api/design/visibility.ts +109 -0
- package/src/api/entity/buildableEnvelope.ts +4 -0
- package/src/api/entity/referenceLine.ts +8 -0
- package/src/api/entity/story.ts +161 -15
- package/src/api/index.ts +5 -0
- package/src/api/presentation/annotate.ts +360 -0
- package/src/api/presentation/diagrams.ts +53 -8
- package/src/api/presentation/export.ts +108 -0
- package/src/api/presentation/import.ts +6 -0
- package/src/api/presentation/index.ts +55 -0
- package/src/api/presentation/placedViews.ts +363 -0
- package/src/api/presentation/shapes.ts +274 -0
- package/src/api/presentation/sheets.ts +346 -13
- package/src/api/presentation/views.ts +164 -12
- package/src/api/program/areas.ts +57 -6
- package/src/api/program/cores.ts +3 -91
- package/src/api/program/index.ts +2 -2
- package/src/api/program/layout.ts +182 -12
- package/src/api/program/site.ts +106 -8
- package/src/api/program/spreadsheet.ts +376 -35
- package/src/api/workspace/index.ts +516 -0
- package/src/handles.ts +77 -13
- package/tsconfig.json +7 -2
|
@@ -233,7 +233,7 @@ export declare abstract class PluginGeomQueryCircleApi {
|
|
|
233
233
|
* | `circle` | {@linkcode CircleHandle} | The circle to query |
|
|
234
234
|
*/
|
|
235
235
|
export declare const PluginGeomQueryCircleGetRadiusArgs: z.ZodObject<{
|
|
236
|
-
circle: z.ZodPipe<z.
|
|
236
|
+
circle: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
237
237
|
}, z.core.$strip>;
|
|
238
238
|
export type PluginGeomQueryCircleGetRadiusArgs = z.infer<typeof PluginGeomQueryCircleGetRadiusArgs>;
|
|
239
239
|
/**
|
|
@@ -244,7 +244,7 @@ export type PluginGeomQueryCircleGetRadiusArgs = z.infer<typeof PluginGeomQueryC
|
|
|
244
244
|
* | `circle` | {@linkcode CircleHandle} | The circle to query |
|
|
245
245
|
*/
|
|
246
246
|
export declare const PluginGeomQueryCircleGetCentreArgs: z.ZodObject<{
|
|
247
|
-
circle: z.ZodPipe<z.
|
|
247
|
+
circle: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
248
248
|
}, z.core.$strip>;
|
|
249
249
|
export type PluginGeomQueryCircleGetCentreArgs = z.infer<typeof PluginGeomQueryCircleGetCentreArgs>;
|
|
250
250
|
/**
|
|
@@ -255,7 +255,7 @@ export type PluginGeomQueryCircleGetCentreArgs = z.infer<typeof PluginGeomQueryC
|
|
|
255
255
|
* | `circle` | {@linkcode CircleHandle} | The circle to query |
|
|
256
256
|
*/
|
|
257
257
|
export declare const PluginGeomQueryCircleGetAxisArgs: z.ZodObject<{
|
|
258
|
-
circle: z.ZodPipe<z.
|
|
258
|
+
circle: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
259
259
|
}, z.core.$strip>;
|
|
260
260
|
export type PluginGeomQueryCircleGetAxisArgs = z.infer<typeof PluginGeomQueryCircleGetAxisArgs>;
|
|
261
261
|
/**
|
|
@@ -266,7 +266,7 @@ export type PluginGeomQueryCircleGetAxisArgs = z.infer<typeof PluginGeomQueryCir
|
|
|
266
266
|
* | `circle` | {@linkcode CircleHandle} | The circle to query |
|
|
267
267
|
*/
|
|
268
268
|
export declare const PluginGeomQueryCircleGetLengthArgs: z.ZodObject<{
|
|
269
|
-
circle: z.ZodPipe<z.
|
|
269
|
+
circle: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
270
270
|
}, z.core.$strip>;
|
|
271
271
|
export type PluginGeomQueryCircleGetLengthArgs = z.infer<typeof PluginGeomQueryCircleGetLengthArgs>;
|
|
272
272
|
/**
|
|
@@ -277,7 +277,7 @@ export type PluginGeomQueryCircleGetLengthArgs = z.infer<typeof PluginGeomQueryC
|
|
|
277
277
|
* | `circle` | {@linkcode CircleHandle} | The circle to query |
|
|
278
278
|
*/
|
|
279
279
|
export declare const PluginGeomQueryCircleIsValidArgs: z.ZodObject<{
|
|
280
|
-
circle: z.ZodPipe<z.
|
|
280
|
+
circle: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
281
281
|
}, z.core.$strip>;
|
|
282
282
|
export type PluginGeomQueryCircleIsValidArgs = z.infer<typeof PluginGeomQueryCircleIsValidArgs>;
|
|
283
283
|
/**
|
|
@@ -289,8 +289,8 @@ export type PluginGeomQueryCircleIsValidArgs = z.infer<typeof PluginGeomQueryCir
|
|
|
289
289
|
* | `point` | {@linkcode Vec3Handle} | The reference point |
|
|
290
290
|
*/
|
|
291
291
|
export declare const PluginGeomQueryCircleGetNearestPointArgs: z.ZodObject<{
|
|
292
|
-
circle: z.ZodPipe<z.
|
|
293
|
-
point: z.ZodPipe<z.
|
|
292
|
+
circle: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
293
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
294
294
|
}, z.core.$strip>;
|
|
295
295
|
export type PluginGeomQueryCircleGetNearestPointArgs = z.infer<typeof PluginGeomQueryCircleGetNearestPointArgs>;
|
|
296
296
|
/**
|
|
@@ -302,8 +302,8 @@ export type PluginGeomQueryCircleGetNearestPointArgs = z.infer<typeof PluginGeom
|
|
|
302
302
|
* | `point` | {@linkcode Vec3Handle} | The point to test |
|
|
303
303
|
*/
|
|
304
304
|
export declare const PluginGeomQueryCircleHasPointArgs: z.ZodObject<{
|
|
305
|
-
circle: z.ZodPipe<z.
|
|
306
|
-
point: z.ZodPipe<z.
|
|
305
|
+
circle: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
306
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
307
307
|
}, z.core.$strip>;
|
|
308
308
|
export type PluginGeomQueryCircleHasPointArgs = z.infer<typeof PluginGeomQueryCircleHasPointArgs>;
|
|
309
309
|
/**
|
|
@@ -315,8 +315,8 @@ export type PluginGeomQueryCircleHasPointArgs = z.infer<typeof PluginGeomQueryCi
|
|
|
315
315
|
* | `point` | {@linkcode Vec3Handle} | A point on the circle |
|
|
316
316
|
*/
|
|
317
317
|
export declare const PluginGeomQueryCircleGetTangentArgs: z.ZodObject<{
|
|
318
|
-
circle: z.ZodPipe<z.
|
|
319
|
-
point: z.ZodPipe<z.
|
|
318
|
+
circle: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
319
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
320
320
|
}, z.core.$strip>;
|
|
321
321
|
export type PluginGeomQueryCircleGetTangentArgs = z.infer<typeof PluginGeomQueryCircleGetTangentArgs>;
|
|
322
322
|
/**
|
|
@@ -328,8 +328,8 @@ export type PluginGeomQueryCircleGetTangentArgs = z.infer<typeof PluginGeomQuery
|
|
|
328
328
|
* | `point` | {@linkcode Vec3Handle} | A point on the circle |
|
|
329
329
|
*/
|
|
330
330
|
export declare const PluginGeomQueryCircleGetNormalArgs: z.ZodObject<{
|
|
331
|
-
circle: z.ZodPipe<z.
|
|
332
|
-
point: z.ZodPipe<z.
|
|
331
|
+
circle: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
332
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
333
333
|
}, z.core.$strip>;
|
|
334
334
|
export type PluginGeomQueryCircleGetNormalArgs = z.infer<typeof PluginGeomQueryCircleGetNormalArgs>;
|
|
335
335
|
/**
|
|
@@ -343,8 +343,8 @@ export type PluginGeomQueryCircleGetNormalArgs = z.infer<typeof PluginGeomQueryC
|
|
|
343
343
|
* | `forward` | `boolean` | Travel direction (optional; default forward) |
|
|
344
344
|
*/
|
|
345
345
|
export declare const PluginGeomQueryCircleGetPointAtDistanceArgs: z.ZodObject<{
|
|
346
|
-
circle: z.ZodPipe<z.
|
|
347
|
-
referencePoint: z.ZodPipe<z.
|
|
346
|
+
circle: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
347
|
+
referencePoint: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
348
348
|
distance: z.ZodNumber;
|
|
349
349
|
forward: z.ZodOptional<z.ZodBoolean>;
|
|
350
350
|
}, z.core.$strip>;
|
|
@@ -358,8 +358,8 @@ export type PluginGeomQueryCircleGetPointAtDistanceArgs = z.infer<typeof PluginG
|
|
|
358
358
|
* | `circleB` | {@linkcode CircleHandle} | Second circle |
|
|
359
359
|
*/
|
|
360
360
|
export declare const PluginGeomQueryCircleIsEqualArgs: z.ZodObject<{
|
|
361
|
-
circleA: z.ZodPipe<z.
|
|
362
|
-
circleB: z.ZodPipe<z.
|
|
361
|
+
circleA: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
362
|
+
circleB: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
363
363
|
}, z.core.$strip>;
|
|
364
364
|
export type PluginGeomQueryCircleIsEqualArgs = z.infer<typeof PluginGeomQueryCircleIsEqualArgs>;
|
|
365
365
|
/**
|
|
@@ -371,7 +371,7 @@ export type PluginGeomQueryCircleIsEqualArgs = z.infer<typeof PluginGeomQueryCir
|
|
|
371
371
|
* | `resolution` | `number` | Number of segments to sample (optional) |
|
|
372
372
|
*/
|
|
373
373
|
export declare const PluginGeomQueryCircleListPointsArgs: z.ZodObject<{
|
|
374
|
-
circle: z.ZodPipe<z.
|
|
374
|
+
circle: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"circle">, string>>;
|
|
375
375
|
resolution: z.ZodOptional<z.ZodNumber>;
|
|
376
376
|
}, z.core.$strip>;
|
|
377
377
|
export type PluginGeomQueryCircleListPointsArgs = z.infer<typeof PluginGeomQueryCircleListPointsArgs>;
|
|
@@ -271,7 +271,7 @@ export declare abstract class PluginGeomQueryContourApi {
|
|
|
271
271
|
* | `contour` | {@linkcode ContourHandle} | The contour to query |
|
|
272
272
|
*/
|
|
273
273
|
export declare const PluginGeomQueryContourGetOuterProfileArgs: z.ZodObject<{
|
|
274
|
-
contour: z.ZodPipe<z.
|
|
274
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
275
275
|
}, z.core.$strip>;
|
|
276
276
|
export type PluginGeomQueryContourGetOuterProfileArgs = z.infer<typeof PluginGeomQueryContourGetOuterProfileArgs>;
|
|
277
277
|
/**
|
|
@@ -282,7 +282,7 @@ export type PluginGeomQueryContourGetOuterProfileArgs = z.infer<typeof PluginGeo
|
|
|
282
282
|
* | `contour` | {@linkcode ContourHandle} | The contour to query |
|
|
283
283
|
*/
|
|
284
284
|
export declare const PluginGeomQueryContourListHolesArgs: z.ZodObject<{
|
|
285
|
-
contour: z.ZodPipe<z.
|
|
285
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
286
286
|
}, z.core.$strip>;
|
|
287
287
|
export type PluginGeomQueryContourListHolesArgs = z.infer<typeof PluginGeomQueryContourListHolesArgs>;
|
|
288
288
|
/**
|
|
@@ -293,7 +293,7 @@ export type PluginGeomQueryContourListHolesArgs = z.infer<typeof PluginGeomQuery
|
|
|
293
293
|
* | `contour` | {@linkcode ContourHandle} | The contour to query |
|
|
294
294
|
*/
|
|
295
295
|
export declare const PluginGeomQueryContourGetHoleCountArgs: z.ZodObject<{
|
|
296
|
-
contour: z.ZodPipe<z.
|
|
296
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
297
297
|
}, z.core.$strip>;
|
|
298
298
|
export type PluginGeomQueryContourGetHoleCountArgs = z.infer<typeof PluginGeomQueryContourGetHoleCountArgs>;
|
|
299
299
|
/**
|
|
@@ -304,7 +304,7 @@ export type PluginGeomQueryContourGetHoleCountArgs = z.infer<typeof PluginGeomQu
|
|
|
304
304
|
* | `contour` | {@linkcode ContourHandle} | The contour to query |
|
|
305
305
|
*/
|
|
306
306
|
export declare const PluginGeomQueryContourGetAreaArgs: z.ZodObject<{
|
|
307
|
-
contour: z.ZodPipe<z.
|
|
307
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
308
308
|
}, z.core.$strip>;
|
|
309
309
|
export type PluginGeomQueryContourGetAreaArgs = z.infer<typeof PluginGeomQueryContourGetAreaArgs>;
|
|
310
310
|
/**
|
|
@@ -315,7 +315,7 @@ export type PluginGeomQueryContourGetAreaArgs = z.infer<typeof PluginGeomQueryCo
|
|
|
315
315
|
* | `contour` | {@linkcode ContourHandle} | The contour to query |
|
|
316
316
|
*/
|
|
317
317
|
export declare const PluginGeomQueryContourGetPerimeterArgs: z.ZodObject<{
|
|
318
|
-
contour: z.ZodPipe<z.
|
|
318
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
319
319
|
}, z.core.$strip>;
|
|
320
320
|
export type PluginGeomQueryContourGetPerimeterArgs = z.infer<typeof PluginGeomQueryContourGetPerimeterArgs>;
|
|
321
321
|
/**
|
|
@@ -326,7 +326,7 @@ export type PluginGeomQueryContourGetPerimeterArgs = z.infer<typeof PluginGeomQu
|
|
|
326
326
|
* | `contour` | {@linkcode ContourHandle} | The contour to query |
|
|
327
327
|
*/
|
|
328
328
|
export declare const PluginGeomQueryContourGetBoundingBoxArgs: z.ZodObject<{
|
|
329
|
-
contour: z.ZodPipe<z.
|
|
329
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
330
330
|
}, z.core.$strip>;
|
|
331
331
|
export type PluginGeomQueryContourGetBoundingBoxArgs = z.infer<typeof PluginGeomQueryContourGetBoundingBoxArgs>;
|
|
332
332
|
/**
|
|
@@ -337,7 +337,7 @@ export type PluginGeomQueryContourGetBoundingBoxArgs = z.infer<typeof PluginGeom
|
|
|
337
337
|
* | `contour` | {@linkcode ContourHandle} | The contour to query |
|
|
338
338
|
*/
|
|
339
339
|
export declare const PluginGeomQueryContourGetNormalArgs: z.ZodObject<{
|
|
340
|
-
contour: z.ZodPipe<z.
|
|
340
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
341
341
|
}, z.core.$strip>;
|
|
342
342
|
export type PluginGeomQueryContourGetNormalArgs = z.infer<typeof PluginGeomQueryContourGetNormalArgs>;
|
|
343
343
|
/**
|
|
@@ -349,8 +349,8 @@ export type PluginGeomQueryContourGetNormalArgs = z.infer<typeof PluginGeomQuery
|
|
|
349
349
|
* | `point` | {@linkcode Vec3Handle} | The reference point |
|
|
350
350
|
*/
|
|
351
351
|
export declare const PluginGeomQueryContourGetNearestPointArgs: z.ZodObject<{
|
|
352
|
-
contour: z.ZodPipe<z.
|
|
353
|
-
point: z.ZodPipe<z.
|
|
352
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
353
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
354
354
|
}, z.core.$strip>;
|
|
355
355
|
export type PluginGeomQueryContourGetNearestPointArgs = z.infer<typeof PluginGeomQueryContourGetNearestPointArgs>;
|
|
356
356
|
/**
|
|
@@ -362,8 +362,8 @@ export type PluginGeomQueryContourGetNearestPointArgs = z.infer<typeof PluginGeo
|
|
|
362
362
|
* | `point` | {@linkcode Vec3Handle} | The point to test |
|
|
363
363
|
*/
|
|
364
364
|
export declare const PluginGeomQueryContourHasPointArgs: z.ZodObject<{
|
|
365
|
-
contour: z.ZodPipe<z.
|
|
366
|
-
point: z.ZodPipe<z.
|
|
365
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
366
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
367
367
|
}, z.core.$strip>;
|
|
368
368
|
export type PluginGeomQueryContourHasPointArgs = z.infer<typeof PluginGeomQueryContourHasPointArgs>;
|
|
369
369
|
/**
|
|
@@ -375,8 +375,8 @@ export type PluginGeomQueryContourHasPointArgs = z.infer<typeof PluginGeomQueryC
|
|
|
375
375
|
* | `point` | {@linkcode Vec3Handle} | The point to test |
|
|
376
376
|
*/
|
|
377
377
|
export declare const PluginGeomQueryContourIsOnBoundaryArgs: z.ZodObject<{
|
|
378
|
-
contour: z.ZodPipe<z.
|
|
379
|
-
point: z.ZodPipe<z.
|
|
378
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
379
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
380
380
|
}, z.core.$strip>;
|
|
381
381
|
export type PluginGeomQueryContourIsOnBoundaryArgs = z.infer<typeof PluginGeomQueryContourIsOnBoundaryArgs>;
|
|
382
382
|
/**
|
|
@@ -387,7 +387,7 @@ export type PluginGeomQueryContourIsOnBoundaryArgs = z.infer<typeof PluginGeomQu
|
|
|
387
387
|
* | `contour` | {@linkcode ContourHandle} | The contour to query |
|
|
388
388
|
*/
|
|
389
389
|
export declare const PluginGeomQueryContourIsClockwiseArgs: z.ZodObject<{
|
|
390
|
-
contour: z.ZodPipe<z.
|
|
390
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
391
391
|
}, z.core.$strip>;
|
|
392
392
|
export type PluginGeomQueryContourIsClockwiseArgs = z.infer<typeof PluginGeomQueryContourIsClockwiseArgs>;
|
|
393
393
|
/**
|
|
@@ -398,7 +398,7 @@ export type PluginGeomQueryContourIsClockwiseArgs = z.infer<typeof PluginGeomQue
|
|
|
398
398
|
* | `contour` | {@linkcode ContourHandle} | The contour to query |
|
|
399
399
|
*/
|
|
400
400
|
export declare const PluginGeomQueryContourIsPlanarArgs: z.ZodObject<{
|
|
401
|
-
contour: z.ZodPipe<z.
|
|
401
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
402
402
|
}, z.core.$strip>;
|
|
403
403
|
export type PluginGeomQueryContourIsPlanarArgs = z.infer<typeof PluginGeomQueryContourIsPlanarArgs>;
|
|
404
404
|
/**
|
|
@@ -409,7 +409,7 @@ export type PluginGeomQueryContourIsPlanarArgs = z.infer<typeof PluginGeomQueryC
|
|
|
409
409
|
* | `contour` | {@linkcode ContourHandle} | The contour to query |
|
|
410
410
|
*/
|
|
411
411
|
export declare const PluginGeomQueryContourIsEmptyArgs: z.ZodObject<{
|
|
412
|
-
contour: z.ZodPipe<z.
|
|
412
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
413
413
|
}, z.core.$strip>;
|
|
414
414
|
export type PluginGeomQueryContourIsEmptyArgs = z.infer<typeof PluginGeomQueryContourIsEmptyArgs>;
|
|
415
415
|
/**
|
|
@@ -420,7 +420,7 @@ export type PluginGeomQueryContourIsEmptyArgs = z.infer<typeof PluginGeomQueryCo
|
|
|
420
420
|
* | `contour` | {@linkcode ContourHandle} | The contour to query |
|
|
421
421
|
*/
|
|
422
422
|
export declare const PluginGeomQueryContourIsSelfIntersectingArgs: z.ZodObject<{
|
|
423
|
-
contour: z.ZodPipe<z.
|
|
423
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
424
424
|
}, z.core.$strip>;
|
|
425
425
|
export type PluginGeomQueryContourIsSelfIntersectingArgs = z.infer<typeof PluginGeomQueryContourIsSelfIntersectingArgs>;
|
|
426
426
|
/**
|
|
@@ -431,7 +431,7 @@ export type PluginGeomQueryContourIsSelfIntersectingArgs = z.infer<typeof Plugin
|
|
|
431
431
|
* | `contour` | {@linkcode ContourHandle} | The contour to query |
|
|
432
432
|
*/
|
|
433
433
|
export declare const PluginGeomQueryContourIsOrientationValidArgs: z.ZodObject<{
|
|
434
|
-
contour: z.ZodPipe<z.
|
|
434
|
+
contour: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
435
435
|
}, z.core.$strip>;
|
|
436
436
|
export type PluginGeomQueryContourIsOrientationValidArgs = z.infer<typeof PluginGeomQueryContourIsOrientationValidArgs>;
|
|
437
437
|
/**
|
|
@@ -443,8 +443,8 @@ export type PluginGeomQueryContourIsOrientationValidArgs = z.infer<typeof Plugin
|
|
|
443
443
|
* | `contourB` | {@linkcode ContourHandle} | Second contour |
|
|
444
444
|
*/
|
|
445
445
|
export declare const PluginGeomQueryContourIsEqualArgs: z.ZodObject<{
|
|
446
|
-
contourA: z.ZodPipe<z.
|
|
447
|
-
contourB: z.ZodPipe<z.
|
|
446
|
+
contourA: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
447
|
+
contourB: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"contour">, string>>;
|
|
448
448
|
}, z.core.$strip>;
|
|
449
449
|
export type PluginGeomQueryContourIsEqualArgs = z.infer<typeof PluginGeomQueryContourIsEqualArgs>;
|
|
450
450
|
//# sourceMappingURL=contour.d.ts.map
|
|
@@ -551,7 +551,7 @@ export declare abstract class PluginGeomQueryCurveApi {
|
|
|
551
551
|
* | `curve` | {@linkcode CurveHandle} | The curve to query |
|
|
552
552
|
*/
|
|
553
553
|
export declare const PluginGeomQueryCurveGetStartPointArgs: z.ZodObject<{
|
|
554
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
554
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
555
555
|
}, z.core.$strip>;
|
|
556
556
|
export type PluginGeomQueryCurveGetStartPointArgs = z.infer<typeof PluginGeomQueryCurveGetStartPointArgs>;
|
|
557
557
|
/**
|
|
@@ -562,7 +562,7 @@ export type PluginGeomQueryCurveGetStartPointArgs = z.infer<typeof PluginGeomQue
|
|
|
562
562
|
* | `curve` | {@linkcode CurveHandle} | The curve to query |
|
|
563
563
|
*/
|
|
564
564
|
export declare const PluginGeomQueryCurveGetEndPointArgs: z.ZodObject<{
|
|
565
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
565
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
566
566
|
}, z.core.$strip>;
|
|
567
567
|
export type PluginGeomQueryCurveGetEndPointArgs = z.infer<typeof PluginGeomQueryCurveGetEndPointArgs>;
|
|
568
568
|
/**
|
|
@@ -573,7 +573,7 @@ export type PluginGeomQueryCurveGetEndPointArgs = z.infer<typeof PluginGeomQuery
|
|
|
573
573
|
* | `curve` | {@linkcode CurveHandle} | The curve to query |
|
|
574
574
|
*/
|
|
575
575
|
export declare const PluginGeomQueryCurveGetMidPointArgs: z.ZodObject<{
|
|
576
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
576
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
577
577
|
}, z.core.$strip>;
|
|
578
578
|
export type PluginGeomQueryCurveGetMidPointArgs = z.infer<typeof PluginGeomQueryCurveGetMidPointArgs>;
|
|
579
579
|
/**
|
|
@@ -584,7 +584,7 @@ export type PluginGeomQueryCurveGetMidPointArgs = z.infer<typeof PluginGeomQuery
|
|
|
584
584
|
* | `curve` | {@linkcode CurveHandle} | The curve to query |
|
|
585
585
|
*/
|
|
586
586
|
export declare const PluginGeomQueryCurveGetLengthArgs: z.ZodObject<{
|
|
587
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
587
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
588
588
|
}, z.core.$strip>;
|
|
589
589
|
export type PluginGeomQueryCurveGetLengthArgs = z.infer<typeof PluginGeomQueryCurveGetLengthArgs>;
|
|
590
590
|
/**
|
|
@@ -595,7 +595,7 @@ export type PluginGeomQueryCurveGetLengthArgs = z.infer<typeof PluginGeomQueryCu
|
|
|
595
595
|
* | `curve` | {@linkcode CurveHandle} | The curve to query |
|
|
596
596
|
*/
|
|
597
597
|
export declare const PluginGeomQueryCurveGetChordLengthArgs: z.ZodObject<{
|
|
598
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
598
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
599
599
|
}, z.core.$strip>;
|
|
600
600
|
export type PluginGeomQueryCurveGetChordLengthArgs = z.infer<typeof PluginGeomQueryCurveGetChordLengthArgs>;
|
|
601
601
|
/**
|
|
@@ -607,8 +607,8 @@ export type PluginGeomQueryCurveGetChordLengthArgs = z.infer<typeof PluginGeomQu
|
|
|
607
607
|
* | `point` | {@linkcode Vec3Handle} | Point on the curve |
|
|
608
608
|
*/
|
|
609
609
|
export declare const PluginGeomQueryCurveGetTangentArgs: z.ZodObject<{
|
|
610
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
611
|
-
point: z.ZodPipe<z.
|
|
610
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
611
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
612
612
|
}, z.core.$strip>;
|
|
613
613
|
export type PluginGeomQueryCurveGetTangentArgs = z.infer<typeof PluginGeomQueryCurveGetTangentArgs>;
|
|
614
614
|
/**
|
|
@@ -620,8 +620,8 @@ export type PluginGeomQueryCurveGetTangentArgs = z.infer<typeof PluginGeomQueryC
|
|
|
620
620
|
* | `point` | {@linkcode Vec3Handle} | Point on the curve |
|
|
621
621
|
*/
|
|
622
622
|
export declare const PluginGeomQueryCurveGetNormalArgs: z.ZodObject<{
|
|
623
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
624
|
-
point: z.ZodPipe<z.
|
|
623
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
624
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
625
625
|
}, z.core.$strip>;
|
|
626
626
|
export type PluginGeomQueryCurveGetNormalArgs = z.infer<typeof PluginGeomQueryCurveGetNormalArgs>;
|
|
627
627
|
/**
|
|
@@ -633,8 +633,8 @@ export type PluginGeomQueryCurveGetNormalArgs = z.infer<typeof PluginGeomQueryCu
|
|
|
633
633
|
* | `point` | {@linkcode Vec3Handle} | The reference point |
|
|
634
634
|
*/
|
|
635
635
|
export declare const PluginGeomQueryCurveGetNearestPointArgs: z.ZodObject<{
|
|
636
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
637
|
-
point: z.ZodPipe<z.
|
|
636
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
637
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
638
638
|
}, z.core.$strip>;
|
|
639
639
|
export type PluginGeomQueryCurveGetNearestPointArgs = z.infer<typeof PluginGeomQueryCurveGetNearestPointArgs>;
|
|
640
640
|
/**
|
|
@@ -646,8 +646,8 @@ export type PluginGeomQueryCurveGetNearestPointArgs = z.infer<typeof PluginGeomQ
|
|
|
646
646
|
* | `point` | {@linkcode Vec3Handle} | The point to project |
|
|
647
647
|
*/
|
|
648
648
|
export declare const PluginGeomQueryCurveGetProjectionArgs: z.ZodObject<{
|
|
649
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
650
|
-
point: z.ZodPipe<z.
|
|
649
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
650
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
651
651
|
}, z.core.$strip>;
|
|
652
652
|
export type PluginGeomQueryCurveGetProjectionArgs = z.infer<typeof PluginGeomQueryCurveGetProjectionArgs>;
|
|
653
653
|
/**
|
|
@@ -661,8 +661,8 @@ export type PluginGeomQueryCurveGetProjectionArgs = z.infer<typeof PluginGeomQue
|
|
|
661
661
|
* | `forward` | `boolean` | Optional direction along the curve (defaults to `true`) |
|
|
662
662
|
*/
|
|
663
663
|
export declare const PluginGeomQueryCurveGetPointAtDistanceArgs: z.ZodObject<{
|
|
664
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
665
|
-
referencePoint: z.ZodPipe<z.
|
|
664
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
665
|
+
referencePoint: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
666
666
|
distance: z.ZodNumber;
|
|
667
667
|
forward: z.ZodOptional<z.ZodBoolean>;
|
|
668
668
|
}, z.core.$strip>;
|
|
@@ -676,8 +676,8 @@ export type PluginGeomQueryCurveGetPointAtDistanceArgs = z.infer<typeof PluginGe
|
|
|
676
676
|
* | `point` | {@linkcode Vec3Handle} | Point on the curve |
|
|
677
677
|
*/
|
|
678
678
|
export declare const PluginGeomQueryCurveGetParameterAtPointArgs: z.ZodObject<{
|
|
679
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
680
|
-
point: z.ZodPipe<z.
|
|
679
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
680
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
681
681
|
}, z.core.$strip>;
|
|
682
682
|
export type PluginGeomQueryCurveGetParameterAtPointArgs = z.infer<typeof PluginGeomQueryCurveGetParameterAtPointArgs>;
|
|
683
683
|
/**
|
|
@@ -689,8 +689,8 @@ export type PluginGeomQueryCurveGetParameterAtPointArgs = z.infer<typeof PluginG
|
|
|
689
689
|
* | `point` | {@linkcode Vec3Handle} | Point on the curve |
|
|
690
690
|
*/
|
|
691
691
|
export declare const PluginGeomQueryCurveGetCurvatureArgs: z.ZodObject<{
|
|
692
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
693
|
-
point: z.ZodPipe<z.
|
|
692
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
693
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
694
694
|
}, z.core.$strip>;
|
|
695
695
|
export type PluginGeomQueryCurveGetCurvatureArgs = z.infer<typeof PluginGeomQueryCurveGetCurvatureArgs>;
|
|
696
696
|
/**
|
|
@@ -702,8 +702,8 @@ export type PluginGeomQueryCurveGetCurvatureArgs = z.infer<typeof PluginGeomQuer
|
|
|
702
702
|
* | `point` | {@linkcode Vec3Handle} | The point to measure from |
|
|
703
703
|
*/
|
|
704
704
|
export declare const PluginGeomQueryCurveGetDistanceToPointArgs: z.ZodObject<{
|
|
705
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
706
|
-
point: z.ZodPipe<z.
|
|
705
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
706
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
707
707
|
}, z.core.$strip>;
|
|
708
708
|
export type PluginGeomQueryCurveGetDistanceToPointArgs = z.infer<typeof PluginGeomQueryCurveGetDistanceToPointArgs>;
|
|
709
709
|
/**
|
|
@@ -716,9 +716,9 @@ export type PluginGeomQueryCurveGetDistanceToPointArgs = z.infer<typeof PluginGe
|
|
|
716
716
|
* | `pointB` | {@linkcode Vec3Handle} | Second point on the curve |
|
|
717
717
|
*/
|
|
718
718
|
export declare const PluginGeomQueryCurveGetDistanceAlongArgs: z.ZodObject<{
|
|
719
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
720
|
-
pointA: z.ZodPipe<z.
|
|
721
|
-
pointB: z.ZodPipe<z.
|
|
719
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
720
|
+
pointA: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
721
|
+
pointB: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
722
722
|
}, z.core.$strip>;
|
|
723
723
|
export type PluginGeomQueryCurveGetDistanceAlongArgs = z.infer<typeof PluginGeomQueryCurveGetDistanceAlongArgs>;
|
|
724
724
|
/**
|
|
@@ -730,7 +730,7 @@ export type PluginGeomQueryCurveGetDistanceAlongArgs = z.infer<typeof PluginGeom
|
|
|
730
730
|
* | `resolution` | `number` | Optional number of samples for arcs (defaults to `20`; ignored for lines) |
|
|
731
731
|
*/
|
|
732
732
|
export declare const PluginGeomQueryCurveListPointsArgs: z.ZodObject<{
|
|
733
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
733
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
734
734
|
resolution: z.ZodOptional<z.ZodNumber>;
|
|
735
735
|
}, z.core.$strip>;
|
|
736
736
|
export type PluginGeomQueryCurveListPointsArgs = z.infer<typeof PluginGeomQueryCurveListPointsArgs>;
|
|
@@ -743,7 +743,7 @@ export type PluginGeomQueryCurveListPointsArgs = z.infer<typeof PluginGeomQueryC
|
|
|
743
743
|
* | `segments` | `number` | Number of equal segments to divide the curve into |
|
|
744
744
|
*/
|
|
745
745
|
export declare const PluginGeomQueryCurveListSubdivisionsArgs: z.ZodObject<{
|
|
746
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
746
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
747
747
|
segments: z.ZodNumber;
|
|
748
748
|
}, z.core.$strip>;
|
|
749
749
|
export type PluginGeomQueryCurveListSubdivisionsArgs = z.infer<typeof PluginGeomQueryCurveListSubdivisionsArgs>;
|
|
@@ -755,7 +755,7 @@ export type PluginGeomQueryCurveListSubdivisionsArgs = z.infer<typeof PluginGeom
|
|
|
755
755
|
* | `curve` | {@linkcode CurveHandle} | The curve to query |
|
|
756
756
|
*/
|
|
757
757
|
export declare const PluginGeomQueryCurveIsLinearArgs: z.ZodObject<{
|
|
758
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
758
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
759
759
|
}, z.core.$strip>;
|
|
760
760
|
export type PluginGeomQueryCurveIsLinearArgs = z.infer<typeof PluginGeomQueryCurveIsLinearArgs>;
|
|
761
761
|
/**
|
|
@@ -768,8 +768,8 @@ export type PluginGeomQueryCurveIsLinearArgs = z.infer<typeof PluginGeomQueryCur
|
|
|
768
768
|
* | `threshold` | `number` | Optional distance tolerance (defaults to the engine default) |
|
|
769
769
|
*/
|
|
770
770
|
export declare const PluginGeomQueryCurveIsOnCurveArgs: z.ZodObject<{
|
|
771
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
772
|
-
point: z.ZodPipe<z.
|
|
771
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
772
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
773
773
|
threshold: z.ZodOptional<z.ZodNumber>;
|
|
774
774
|
}, z.core.$strip>;
|
|
775
775
|
export type PluginGeomQueryCurveIsOnCurveArgs = z.infer<typeof PluginGeomQueryCurveIsOnCurveArgs>;
|
|
@@ -783,8 +783,8 @@ export type PluginGeomQueryCurveIsOnCurveArgs = z.infer<typeof PluginGeomQueryCu
|
|
|
783
783
|
* | `includeEndPoints` | `boolean` | Optional flag to count endpoints as contained (defaults to `true`) |
|
|
784
784
|
*/
|
|
785
785
|
export declare const PluginGeomQueryCurveHasPointArgs: z.ZodObject<{
|
|
786
|
-
curve: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
787
|
-
point: z.ZodPipe<z.
|
|
786
|
+
curve: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
787
|
+
point: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"vec3">, string>>;
|
|
788
788
|
includeEndPoints: z.ZodOptional<z.ZodBoolean>;
|
|
789
789
|
}, z.core.$strip>;
|
|
790
790
|
export type PluginGeomQueryCurveHasPointArgs = z.infer<typeof PluginGeomQueryCurveHasPointArgs>;
|
|
@@ -797,8 +797,8 @@ export type PluginGeomQueryCurveHasPointArgs = z.infer<typeof PluginGeomQueryCur
|
|
|
797
797
|
* | `curveB` | {@linkcode CurveHandle} | Second curve |
|
|
798
798
|
*/
|
|
799
799
|
export declare const PluginGeomQueryCurveIsEqualArgs: z.ZodObject<{
|
|
800
|
-
curveA: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
801
|
-
curveB: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
800
|
+
curveA: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
801
|
+
curveB: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
802
802
|
}, z.core.$strip>;
|
|
803
803
|
export type PluginGeomQueryCurveIsEqualArgs = z.infer<typeof PluginGeomQueryCurveIsEqualArgs>;
|
|
804
804
|
/**
|
|
@@ -811,8 +811,8 @@ export type PluginGeomQueryCurveIsEqualArgs = z.infer<typeof PluginGeomQueryCurv
|
|
|
811
811
|
* | `includeEndPoints` | `boolean` | Optional flag to count endpoint contact as overlap (defaults to `false`) |
|
|
812
812
|
*/
|
|
813
813
|
export declare const PluginGeomQueryCurveIsOverlappingArgs: z.ZodObject<{
|
|
814
|
-
curveA: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
815
|
-
curveB: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
814
|
+
curveA: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
815
|
+
curveB: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
816
816
|
includeEndPoints: z.ZodOptional<z.ZodBoolean>;
|
|
817
817
|
}, z.core.$strip>;
|
|
818
818
|
export type PluginGeomQueryCurveIsOverlappingArgs = z.infer<typeof PluginGeomQueryCurveIsOverlappingArgs>;
|
|
@@ -825,8 +825,8 @@ export type PluginGeomQueryCurveIsOverlappingArgs = z.infer<typeof PluginGeomQue
|
|
|
825
825
|
* | `curveB` | {@linkcode CurveHandle} | Second curve |
|
|
826
826
|
*/
|
|
827
827
|
export declare const PluginGeomQueryCurveGetCommonPartArgs: z.ZodObject<{
|
|
828
|
-
curveA: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
829
|
-
curveB: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
828
|
+
curveA: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
829
|
+
curveB: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
830
830
|
}, z.core.$strip>;
|
|
831
831
|
export type PluginGeomQueryCurveGetCommonPartArgs = z.infer<typeof PluginGeomQueryCurveGetCommonPartArgs>;
|
|
832
832
|
/**
|
|
@@ -840,8 +840,8 @@ export type PluginGeomQueryCurveGetCommonPartArgs = z.infer<typeof PluginGeomQue
|
|
|
840
840
|
* | `boundedB` | `boolean` | Optional flag to bound intersections to `curveB`'s extent (defaults to `true`) |
|
|
841
841
|
*/
|
|
842
842
|
export declare const PluginGeomQueryCurveListIntersectionsArgs: z.ZodObject<{
|
|
843
|
-
curveA: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
844
|
-
curveB: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
843
|
+
curveA: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
844
|
+
curveB: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
845
845
|
boundedA: z.ZodOptional<z.ZodBoolean>;
|
|
846
846
|
boundedB: z.ZodOptional<z.ZodBoolean>;
|
|
847
847
|
}, z.core.$strip>;
|
|
@@ -855,8 +855,8 @@ export type PluginGeomQueryCurveListIntersectionsArgs = z.infer<typeof PluginGeo
|
|
|
855
855
|
* | `curveB` | {@linkcode CurveHandle} | Second curve |
|
|
856
856
|
*/
|
|
857
857
|
export declare const PluginGeomQueryCurveGetMergedCurveArgs: z.ZodObject<{
|
|
858
|
-
curveA: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
859
|
-
curveB: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
858
|
+
curveA: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
859
|
+
curveB: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
860
860
|
}, z.core.$strip>;
|
|
861
861
|
export type PluginGeomQueryCurveGetMergedCurveArgs = z.infer<typeof PluginGeomQueryCurveGetMergedCurveArgs>;
|
|
862
862
|
/**
|
|
@@ -868,8 +868,8 @@ export type PluginGeomQueryCurveGetMergedCurveArgs = z.infer<typeof PluginGeomQu
|
|
|
868
868
|
* | `curveB` | {@linkcode CurveHandle} | Second curve |
|
|
869
869
|
*/
|
|
870
870
|
export declare const PluginGeomQueryCurveIsContinuousArgs: z.ZodObject<{
|
|
871
|
-
curveA: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
872
|
-
curveB: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
871
|
+
curveA: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
872
|
+
curveB: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
873
873
|
}, z.core.$strip>;
|
|
874
874
|
export type PluginGeomQueryCurveIsContinuousArgs = z.infer<typeof PluginGeomQueryCurveIsContinuousArgs>;
|
|
875
875
|
/**
|
|
@@ -882,8 +882,8 @@ export type PluginGeomQueryCurveIsContinuousArgs = z.infer<typeof PluginGeomQuer
|
|
|
882
882
|
* | `tolerance` | `number` | Optional angular tolerance (defaults to the engine default) |
|
|
883
883
|
*/
|
|
884
884
|
export declare const PluginGeomQueryCurveIsParallelArgs: z.ZodObject<{
|
|
885
|
-
lineA: z.ZodPipe<z.
|
|
886
|
-
lineB: z.ZodPipe<z.
|
|
885
|
+
lineA: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>;
|
|
886
|
+
lineB: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>;
|
|
887
887
|
tolerance: z.ZodOptional<z.ZodNumber>;
|
|
888
888
|
}, z.core.$strip>;
|
|
889
889
|
export type PluginGeomQueryCurveIsParallelArgs = z.infer<typeof PluginGeomQueryCurveIsParallelArgs>;
|
|
@@ -897,8 +897,8 @@ export type PluginGeomQueryCurveIsParallelArgs = z.infer<typeof PluginGeomQueryC
|
|
|
897
897
|
* | `includeEndPoints` | `boolean` | Optional flag to include endpoints when measuring (defaults to `false`) |
|
|
898
898
|
*/
|
|
899
899
|
export declare const PluginGeomQueryCurveGetShortestGapArgs: z.ZodObject<{
|
|
900
|
-
curveA: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
901
|
-
curveB: z.ZodUnion<readonly [z.ZodPipe<z.
|
|
900
|
+
curveA: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
901
|
+
curveB: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>, z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"arc">, string>>]>;
|
|
902
902
|
includeEndPoints: z.ZodOptional<z.ZodBoolean>;
|
|
903
903
|
}, z.core.$strip>;
|
|
904
904
|
export type PluginGeomQueryCurveGetShortestGapArgs = z.infer<typeof PluginGeomQueryCurveGetShortestGapArgs>;
|
|
@@ -911,8 +911,8 @@ export type PluginGeomQueryCurveGetShortestGapArgs = z.infer<typeof PluginGeomQu
|
|
|
911
911
|
* | `lineB` | {@linkcode LineHandle} | Second line |
|
|
912
912
|
*/
|
|
913
913
|
export declare const PluginGeomQueryCurveGetDistanceBetweenArgs: z.ZodObject<{
|
|
914
|
-
lineA: z.ZodPipe<z.
|
|
915
|
-
lineB: z.ZodPipe<z.
|
|
914
|
+
lineA: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>;
|
|
915
|
+
lineB: z.ZodPipe<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodString>, z.ZodTransform<import("../../../..").Handle<"line">, string>>;
|
|
916
916
|
}, z.core.$strip>;
|
|
917
917
|
export type PluginGeomQueryCurveGetDistanceBetweenArgs = z.infer<typeof PluginGeomQueryCurveGetDistanceBetweenArgs>;
|
|
918
918
|
//# sourceMappingURL=curve.d.ts.map
|