@pascal-app/core 0.8.0 → 0.9.1
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/dist/events/bus.d.ts +39 -13
- package/dist/events/bus.d.ts.map +1 -1
- package/dist/hooks/scene-registry/scene-registry.d.ts +6 -22
- package/dist/hooks/scene-registry/scene-registry.d.ts.map +1 -1
- package/dist/hooks/scene-registry/scene-registry.js +33 -26
- package/dist/hooks/spatial-grid/floor-placed-elevation.d.ts +14 -0
- package/dist/hooks/spatial-grid/floor-placed-elevation.d.ts.map +1 -0
- package/dist/hooks/spatial-grid/floor-placed-elevation.js +51 -0
- package/dist/hooks/spatial-grid/floor-placed-elevation.test.d.ts +2 -0
- package/dist/hooks/spatial-grid/floor-placed-elevation.test.d.ts.map +1 -0
- package/dist/hooks/spatial-grid/floor-placed-elevation.test.js +273 -0
- package/dist/hooks/spatial-grid/spatial-grid-manager.d.ts +13 -2
- package/dist/hooks/spatial-grid/spatial-grid-manager.d.ts.map +1 -1
- package/dist/hooks/spatial-grid/spatial-grid-manager.js +95 -9
- package/dist/hooks/spatial-grid/spatial-grid-sync.d.ts +28 -1
- package/dist/hooks/spatial-grid/spatial-grid-sync.d.ts.map +1 -1
- package/dist/hooks/spatial-grid/spatial-grid-sync.js +91 -18
- package/dist/index.d.ts +22 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +19 -2
- package/dist/lib/polygon-relations.d.ts +10 -0
- package/dist/lib/polygon-relations.d.ts.map +1 -0
- package/dist/lib/polygon-relations.js +73 -0
- package/dist/lib/space-detection-pause.test.d.ts +2 -0
- package/dist/lib/space-detection-pause.test.d.ts.map +1 -0
- package/dist/lib/space-detection-pause.test.js +42 -0
- package/dist/lib/space-detection.d.ts +30 -1
- package/dist/lib/space-detection.d.ts.map +1 -1
- package/dist/lib/space-detection.js +215 -36
- package/dist/lib/space-detection.test.d.ts +2 -0
- package/dist/lib/space-detection.test.d.ts.map +1 -0
- package/dist/lib/space-detection.test.js +77 -0
- package/dist/material-library.d.ts +1 -1
- package/dist/material-library.d.ts.map +1 -1
- package/dist/material-library.js +1940 -143
- package/dist/registry/__bench__/relations-resolver.bench.d.ts +15 -0
- package/dist/registry/__bench__/relations-resolver.bench.d.ts.map +1 -0
- package/dist/registry/__bench__/relations-resolver.bench.js +170 -0
- package/dist/registry/handles.d.ts +321 -0
- package/dist/registry/handles.d.ts.map +1 -0
- package/dist/registry/handles.js +24 -0
- package/dist/registry/index.d.ts +7 -0
- package/dist/registry/index.d.ts.map +1 -0
- package/dist/registry/index.js +4 -0
- package/dist/registry/registry.d.ts +93 -0
- package/dist/registry/registry.d.ts.map +1 -0
- package/dist/registry/registry.js +201 -0
- package/dist/registry/registry.test.d.ts +2 -0
- package/dist/registry/registry.test.d.ts.map +1 -0
- package/dist/registry/registry.test.js +183 -0
- package/dist/registry/relations-resolver.d.ts +42 -0
- package/dist/registry/relations-resolver.d.ts.map +1 -0
- package/dist/registry/relations-resolver.js +77 -0
- package/dist/registry/relations-resolver.test.d.ts +2 -0
- package/dist/registry/relations-resolver.test.d.ts.map +1 -0
- package/dist/registry/relations-resolver.test.js +183 -0
- package/dist/registry/scene-api.d.ts +44 -0
- package/dist/registry/scene-api.d.ts.map +1 -0
- package/dist/registry/scene-api.js +111 -0
- package/dist/registry/scene-api.test.d.ts +2 -0
- package/dist/registry/scene-api.test.d.ts.map +1 -0
- package/dist/registry/scene-api.test.js +183 -0
- package/dist/registry/subtree.d.ts +67 -0
- package/dist/registry/subtree.d.ts.map +1 -0
- package/dist/registry/subtree.js +119 -0
- package/dist/registry/subtree.test.d.ts +2 -0
- package/dist/registry/subtree.test.d.ts.map +1 -0
- package/dist/registry/subtree.test.js +133 -0
- package/dist/registry/types.d.ts +1420 -0
- package/dist/registry/types.d.ts.map +1 -0
- package/dist/registry/types.js +1 -0
- package/dist/schema/index.d.ts +17 -2
- package/dist/schema/index.d.ts.map +1 -1
- package/dist/schema/index.js +17 -3
- package/dist/schema/material.d.ts +10 -0
- package/dist/schema/material.d.ts.map +1 -1
- package/dist/schema/material.js +10 -0
- package/dist/schema/nodes/box-vent.d.ts +74 -0
- package/dist/schema/nodes/box-vent.d.ts.map +1 -0
- package/dist/schema/nodes/box-vent.js +63 -0
- package/dist/schema/nodes/building.d.ts +1 -1
- package/dist/schema/nodes/building.d.ts.map +1 -1
- package/dist/schema/nodes/building.js +3 -2
- package/dist/schema/nodes/ceiling.d.ts +2 -0
- package/dist/schema/nodes/ceiling.d.ts.map +1 -1
- package/dist/schema/nodes/ceiling.js +1 -1
- package/dist/schema/nodes/chimney.d.ts +158 -0
- package/dist/schema/nodes/chimney.d.ts.map +1 -0
- package/dist/schema/nodes/chimney.js +67 -0
- package/dist/schema/nodes/column.d.ts +597 -5
- package/dist/schema/nodes/column.d.ts.map +1 -1
- package/dist/schema/nodes/column.js +586 -6
- package/dist/schema/nodes/cupola.d.ts +66 -0
- package/dist/schema/nodes/cupola.d.ts.map +1 -0
- package/dist/schema/nodes/cupola.js +28 -0
- package/dist/schema/nodes/dormer.d.ts +228 -0
- package/dist/schema/nodes/dormer.d.ts.map +1 -0
- package/dist/schema/nodes/dormer.js +119 -0
- package/dist/schema/nodes/downspout.d.ts +75 -0
- package/dist/schema/nodes/downspout.d.ts.map +1 -0
- package/dist/schema/nodes/downspout.js +63 -0
- package/dist/schema/nodes/elevator.d.ts +105 -0
- package/dist/schema/nodes/elevator.d.ts.map +1 -0
- package/dist/schema/nodes/elevator.js +54 -0
- package/dist/schema/nodes/eyebrow-vent.d.ts +68 -0
- package/dist/schema/nodes/eyebrow-vent.d.ts.map +1 -0
- package/dist/schema/nodes/eyebrow-vent.js +40 -0
- package/dist/schema/nodes/fence.d.ts +1 -0
- package/dist/schema/nodes/fence.d.ts.map +1 -1
- package/dist/schema/nodes/fence.js +2 -0
- package/dist/schema/nodes/gutter.d.ts +84 -0
- package/dist/schema/nodes/gutter.d.ts.map +1 -0
- package/dist/schema/nodes/gutter.js +76 -0
- package/dist/schema/nodes/item.d.ts +4 -0
- package/dist/schema/nodes/item.d.ts.map +1 -1
- package/dist/schema/nodes/item.js +9 -0
- package/dist/schema/nodes/level.d.ts +1 -1
- package/dist/schema/nodes/level.d.ts.map +1 -1
- package/dist/schema/nodes/level.js +2 -0
- package/dist/schema/nodes/ridge-vent.d.ts +67 -0
- package/dist/schema/nodes/ridge-vent.d.ts.map +1 -0
- package/dist/schema/nodes/ridge-vent.js +30 -0
- package/dist/schema/nodes/roof-segment.d.ts +195 -1
- package/dist/schema/nodes/roof-segment.d.ts.map +1 -1
- package/dist/schema/nodes/roof-segment.js +254 -3
- package/dist/schema/nodes/roof.d.ts.map +1 -1
- package/dist/schema/nodes/roof.js +4 -16
- package/dist/schema/nodes/shelf.d.ts +105 -0
- package/dist/schema/nodes/shelf.d.ts.map +1 -0
- package/dist/schema/nodes/shelf.js +84 -0
- package/dist/schema/nodes/site.d.ts +1 -122
- package/dist/schema/nodes/site.d.ts.map +1 -1
- package/dist/schema/nodes/site.js +2 -6
- package/dist/schema/nodes/skylight.d.ts +279 -0
- package/dist/schema/nodes/skylight.d.ts.map +1 -0
- package/dist/schema/nodes/skylight.js +152 -0
- package/dist/schema/nodes/slab.d.ts +2 -0
- package/dist/schema/nodes/slab.d.ts.map +1 -1
- package/dist/schema/nodes/slab.js +1 -1
- package/dist/schema/nodes/solar-panel.d.ts +117 -0
- package/dist/schema/nodes/solar-panel.d.ts.map +1 -0
- package/dist/schema/nodes/solar-panel.js +47 -0
- package/dist/schema/nodes/surface-hole-metadata.d.ts +2 -0
- package/dist/schema/nodes/surface-hole-metadata.d.ts.map +1 -1
- package/dist/schema/nodes/surface-hole-metadata.js +3 -1
- package/dist/schema/nodes/turbine-vent.d.ts +68 -0
- package/dist/schema/nodes/turbine-vent.d.ts.map +1 -0
- package/dist/schema/nodes/turbine-vent.js +41 -0
- package/dist/schema/types.d.ts +1325 -125
- package/dist/schema/types.d.ts.map +1 -1
- package/dist/schema/types.js +26 -0
- package/dist/services/alignment-anchors.d.ts +100 -0
- package/dist/services/alignment-anchors.d.ts.map +1 -0
- package/dist/services/alignment-anchors.js +283 -0
- package/dist/services/alignment-anchors.test.d.ts +2 -0
- package/dist/services/alignment-anchors.test.d.ts.map +1 -0
- package/dist/services/alignment-anchors.test.js +383 -0
- package/dist/services/alignment.d.ts +126 -0
- package/dist/services/alignment.d.ts.map +1 -0
- package/dist/services/alignment.js +169 -0
- package/dist/services/alignment.test.d.ts +2 -0
- package/dist/services/alignment.test.d.ts.map +1 -0
- package/dist/services/alignment.test.js +92 -0
- package/dist/services/drag-session.d.ts +47 -0
- package/dist/services/drag-session.d.ts.map +1 -0
- package/dist/services/drag-session.js +100 -0
- package/dist/services/drag-session.test.d.ts +2 -0
- package/dist/services/drag-session.test.d.ts.map +1 -0
- package/dist/services/drag-session.test.js +219 -0
- package/dist/services/hosting.d.ts +80 -0
- package/dist/services/hosting.d.ts.map +1 -0
- package/dist/services/hosting.js +122 -0
- package/dist/services/hosting.test.d.ts +2 -0
- package/dist/services/hosting.test.d.ts.map +1 -0
- package/dist/services/hosting.test.js +199 -0
- package/dist/services/index.d.ts +7 -0
- package/dist/services/index.d.ts.map +1 -0
- package/dist/services/index.js +6 -0
- package/dist/services/movement.d.ts +48 -0
- package/dist/services/movement.d.ts.map +1 -0
- package/dist/services/movement.js +65 -0
- package/dist/services/movement.test.d.ts +2 -0
- package/dist/services/movement.test.d.ts.map +1 -0
- package/dist/services/movement.test.js +133 -0
- package/dist/services/single-undo-dance.test.d.ts +2 -0
- package/dist/services/single-undo-dance.test.d.ts.map +1 -0
- package/dist/services/single-undo-dance.test.js +210 -0
- package/dist/services/snap.d.ts +72 -0
- package/dist/services/snap.d.ts.map +1 -0
- package/dist/services/snap.js +120 -0
- package/dist/services/snap.test.d.ts +2 -0
- package/dist/services/snap.test.d.ts.map +1 -0
- package/dist/services/snap.test.js +95 -0
- package/dist/solar-panel-presets.d.ts +17 -0
- package/dist/solar-panel-presets.d.ts.map +1 -0
- package/dist/solar-panel-presets.js +43 -0
- package/dist/store/actions/node-actions.d.ts +14 -2
- package/dist/store/actions/node-actions.d.ts.map +1 -1
- package/dist/store/actions/node-actions.js +492 -15
- package/dist/store/actions/node-mutation-sanitize.test.d.ts +2 -0
- package/dist/store/actions/node-mutation-sanitize.test.d.ts.map +1 -0
- package/dist/store/actions/node-mutation-sanitize.test.js +147 -0
- package/dist/store/actions/reparent.test.d.ts +2 -0
- package/dist/store/actions/reparent.test.d.ts.map +1 -0
- package/dist/store/actions/reparent.test.js +212 -0
- package/dist/store/use-interactive.d.ts +39 -0
- package/dist/store/use-interactive.d.ts.map +1 -1
- package/dist/store/use-interactive.js +75 -0
- package/dist/store/use-live-node-overrides.d.ts +22 -0
- package/dist/store/use-live-node-overrides.d.ts.map +1 -0
- package/dist/store/use-live-node-overrides.js +59 -0
- package/dist/store/use-scene-elevator-migration.test.d.ts +2 -0
- package/dist/store/use-scene-elevator-migration.test.d.ts.map +1 -0
- package/dist/store/use-scene-elevator-migration.test.js +109 -0
- package/dist/store/use-scene.d.ts +11 -0
- package/dist/store/use-scene.d.ts.map +1 -1
- package/dist/store/use-scene.js +196 -6
- package/dist/systems/elevator/elevator-dispatch.d.ts +12 -0
- package/dist/systems/elevator/elevator-dispatch.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-dispatch.js +57 -0
- package/dist/systems/elevator/elevator-geometry.d.ts +15 -0
- package/dist/systems/elevator/elevator-geometry.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-geometry.js +50 -0
- package/dist/systems/elevator/elevator-opening-sync.d.ts +6 -0
- package/dist/systems/elevator/elevator-opening-sync.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-opening-sync.js +218 -0
- package/dist/systems/elevator/elevator-opening-sync.test.d.ts +2 -0
- package/dist/systems/elevator/elevator-opening-sync.test.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-opening-sync.test.js +146 -0
- package/dist/systems/elevator/elevator-opening-system.d.ts +2 -0
- package/dist/systems/elevator/elevator-opening-system.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-opening-system.js +48 -0
- package/dist/systems/elevator/elevator-runtime-system.d.ts +2 -0
- package/dist/systems/elevator/elevator-runtime-system.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-runtime-system.js +8 -0
- package/dist/systems/elevator/elevator-runtime.d.ts +18 -0
- package/dist/systems/elevator/elevator-runtime.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-runtime.js +225 -0
- package/dist/systems/elevator/elevator-runtime.test.d.ts +2 -0
- package/dist/systems/elevator/elevator-runtime.test.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-runtime.test.js +64 -0
- package/dist/systems/elevator/elevator-service.d.ts +19 -0
- package/dist/systems/elevator/elevator-service.d.ts.map +1 -0
- package/dist/systems/elevator/elevator-service.js +111 -0
- package/dist/systems/stair/stair-footprint.d.ts +44 -0
- package/dist/systems/stair/stair-footprint.d.ts.map +1 -0
- package/dist/systems/stair/stair-footprint.js +168 -0
- package/dist/systems/stair/stair-opening-preview.d.ts +1777 -0
- package/dist/systems/stair/stair-opening-preview.d.ts.map +1 -0
- package/dist/systems/stair/stair-opening-preview.js +93 -0
- package/dist/systems/stair/stair-opening-preview.test.d.ts +2 -0
- package/dist/systems/stair/stair-opening-preview.test.d.ts.map +1 -0
- package/dist/systems/stair/stair-opening-preview.test.js +80 -0
- package/dist/systems/stair/stair-opening-sync.d.ts.map +1 -1
- package/dist/systems/stair/stair-opening-sync.js +172 -147
- package/dist/systems/stair/stair-opening-sync.test.js +385 -2
- package/dist/systems/stair/stair-opening-system.d.ts +2 -0
- package/dist/systems/stair/stair-opening-system.d.ts.map +1 -0
- package/dist/systems/stair/stair-opening-system.js +104 -0
- package/dist/systems/wall/wall-move.d.ts +48 -0
- package/dist/systems/wall/wall-move.d.ts.map +1 -0
- package/dist/systems/wall/wall-move.js +193 -0
- package/dist/utils/clone-scene-graph.d.ts +6 -4
- package/dist/utils/clone-scene-graph.d.ts.map +1 -1
- package/dist/utils/clone-scene-graph.js +6 -4
- package/dist/utils/clone-scene-graph.test.d.ts +2 -0
- package/dist/utils/clone-scene-graph.test.d.ts.map +1 -0
- package/dist/utils/clone-scene-graph.test.js +59 -0
- package/dist/validation/validate-build-json.d.ts +43 -0
- package/dist/validation/validate-build-json.d.ts.map +1 -0
- package/dist/validation/validate-build-json.js +227 -0
- package/package.json +9 -2
|
@@ -69,6 +69,19 @@ export declare const ColumnCarvingPlacement: z.ZodEnum<{
|
|
|
69
69
|
capital: "capital";
|
|
70
70
|
all: "all";
|
|
71
71
|
}>;
|
|
72
|
+
export declare const ColumnSupportStyle: z.ZodEnum<{
|
|
73
|
+
vertical: "vertical";
|
|
74
|
+
"a-frame": "a-frame";
|
|
75
|
+
"y-frame": "y-frame";
|
|
76
|
+
"v-frame": "v-frame";
|
|
77
|
+
"x-brace": "x-brace";
|
|
78
|
+
"k-brace": "k-brace";
|
|
79
|
+
"single-strut": "single-strut";
|
|
80
|
+
tripod: "tripod";
|
|
81
|
+
trestle: "trestle";
|
|
82
|
+
"portal-frame": "portal-frame";
|
|
83
|
+
"box-frame": "box-frame";
|
|
84
|
+
}>;
|
|
72
85
|
export type ColumnStyle = z.infer<typeof ColumnStyle>;
|
|
73
86
|
export type ColumnCrossSection = z.infer<typeof ColumnCrossSection>;
|
|
74
87
|
export type ColumnShaftProfile = z.infer<typeof ColumnShaftProfile>;
|
|
@@ -78,6 +91,7 @@ export type ColumnBaseStyle = z.infer<typeof ColumnBaseStyle>;
|
|
|
78
91
|
export type ColumnCapitalStyle = z.infer<typeof ColumnCapitalStyle>;
|
|
79
92
|
export type ColumnRingPlacement = z.infer<typeof ColumnRingPlacement>;
|
|
80
93
|
export type ColumnCarvingPlacement = z.infer<typeof ColumnCarvingPlacement>;
|
|
94
|
+
export type ColumnSupportStyle = z.infer<typeof ColumnSupportStyle>;
|
|
81
95
|
export declare const ColumnNode: z.ZodObject<{
|
|
82
96
|
object: z.ZodDefault<z.ZodLiteral<"node">>;
|
|
83
97
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -229,6 +243,24 @@ export declare const ColumnNode: z.ZodObject<{
|
|
|
229
243
|
lowerBandCarvingLevel: z.ZodDefault<z.ZodNumber>;
|
|
230
244
|
dentilCount: z.ZodDefault<z.ZodNumber>;
|
|
231
245
|
beadCount: z.ZodDefault<z.ZodNumber>;
|
|
246
|
+
supportStyle: z.ZodDefault<z.ZodEnum<{
|
|
247
|
+
vertical: "vertical";
|
|
248
|
+
"a-frame": "a-frame";
|
|
249
|
+
"y-frame": "y-frame";
|
|
250
|
+
"v-frame": "v-frame";
|
|
251
|
+
"x-brace": "x-brace";
|
|
252
|
+
"k-brace": "k-brace";
|
|
253
|
+
"single-strut": "single-strut";
|
|
254
|
+
tripod: "tripod";
|
|
255
|
+
trestle: "trestle";
|
|
256
|
+
"portal-frame": "portal-frame";
|
|
257
|
+
"box-frame": "box-frame";
|
|
258
|
+
}>>;
|
|
259
|
+
braceWidth: z.ZodDefault<z.ZodNumber>;
|
|
260
|
+
braceDepth: z.ZodDefault<z.ZodNumber>;
|
|
261
|
+
braceBottomSpread: z.ZodDefault<z.ZodNumber>;
|
|
262
|
+
braceTopSpread: z.ZodDefault<z.ZodNumber>;
|
|
263
|
+
bracePlateEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
232
264
|
material: z.ZodOptional<z.ZodObject<{
|
|
233
265
|
id: z.ZodOptional<z.ZodString>;
|
|
234
266
|
preset: z.ZodOptional<z.ZodEnum<{
|
|
@@ -268,7 +300,7 @@ export declare const COLUMN_PRESETS: {
|
|
|
268
300
|
readonly label: "Straight Round";
|
|
269
301
|
readonly style: "plain";
|
|
270
302
|
readonly crossSection: "round";
|
|
271
|
-
readonly height: 2.
|
|
303
|
+
readonly height: 2.5;
|
|
272
304
|
readonly radius: 0.22;
|
|
273
305
|
readonly width: 0.44;
|
|
274
306
|
readonly depth: 0.44;
|
|
@@ -318,7 +350,7 @@ export declare const COLUMN_PRESETS: {
|
|
|
318
350
|
readonly label: "Square Block";
|
|
319
351
|
readonly style: "faceted";
|
|
320
352
|
readonly crossSection: "square";
|
|
321
|
-
readonly height: 2.
|
|
353
|
+
readonly height: 2.5;
|
|
322
354
|
readonly radius: 0.24;
|
|
323
355
|
readonly width: 0.48;
|
|
324
356
|
readonly depth: 0.48;
|
|
@@ -368,7 +400,7 @@ export declare const COLUMN_PRESETS: {
|
|
|
368
400
|
readonly label: "Tapered Round";
|
|
369
401
|
readonly style: "plain";
|
|
370
402
|
readonly crossSection: "round";
|
|
371
|
-
readonly height:
|
|
403
|
+
readonly height: 2.5;
|
|
372
404
|
readonly radius: 0.23;
|
|
373
405
|
readonly width: 0.46;
|
|
374
406
|
readonly depth: 0.46;
|
|
@@ -418,7 +450,7 @@ export declare const COLUMN_PRESETS: {
|
|
|
418
450
|
readonly label: "Soft Bulged";
|
|
419
451
|
readonly style: "plain";
|
|
420
452
|
readonly crossSection: "round";
|
|
421
|
-
readonly height: 2.
|
|
453
|
+
readonly height: 2.5;
|
|
422
454
|
readonly radius: 0.22;
|
|
423
455
|
readonly width: 0.44;
|
|
424
456
|
readonly depth: 0.44;
|
|
@@ -468,7 +500,7 @@ export declare const COLUMN_PRESETS: {
|
|
|
468
500
|
readonly label: "Hourglass";
|
|
469
501
|
readonly style: "plain";
|
|
470
502
|
readonly crossSection: "round";
|
|
471
|
-
readonly height: 2.
|
|
503
|
+
readonly height: 2.5;
|
|
472
504
|
readonly radius: 0.22;
|
|
473
505
|
readonly width: 0.44;
|
|
474
506
|
readonly depth: 0.44;
|
|
@@ -514,6 +546,566 @@ export declare const COLUMN_PRESETS: {
|
|
|
514
546
|
readonly dentilCount: 0;
|
|
515
547
|
readonly beadCount: 0;
|
|
516
548
|
};
|
|
549
|
+
readonly aFrameSupport: {
|
|
550
|
+
readonly label: "A-Frame Support";
|
|
551
|
+
readonly supportStyle: "a-frame";
|
|
552
|
+
readonly style: "faceted";
|
|
553
|
+
readonly crossSection: "rectangular";
|
|
554
|
+
readonly height: 2.5;
|
|
555
|
+
readonly radius: 0.08;
|
|
556
|
+
readonly width: 0.16;
|
|
557
|
+
readonly depth: 0.16;
|
|
558
|
+
readonly edgeSoftness: 0.012;
|
|
559
|
+
readonly baseHeight: 0;
|
|
560
|
+
readonly capitalHeight: 0;
|
|
561
|
+
readonly shaftProfile: "straight";
|
|
562
|
+
readonly shaftTaper: 0;
|
|
563
|
+
readonly shaftBulge: 0;
|
|
564
|
+
readonly shaftStartScale: 1;
|
|
565
|
+
readonly shaftEndScale: 1;
|
|
566
|
+
readonly shaftSegmentCount: 1;
|
|
567
|
+
readonly shaftTwistStep: 0;
|
|
568
|
+
readonly shaftCornerRadius: 0.012;
|
|
569
|
+
readonly shaftDetail: "none";
|
|
570
|
+
readonly baseStyle: "none";
|
|
571
|
+
readonly baseWidthScale: 1;
|
|
572
|
+
readonly baseDepthScale: 1;
|
|
573
|
+
readonly baseTierCount: 1;
|
|
574
|
+
readonly baseStepSpread: 0.34;
|
|
575
|
+
readonly basePlinthHeightRatio: 0.44;
|
|
576
|
+
readonly baseRoundBandScale: 0.92;
|
|
577
|
+
readonly baseNeckScale: 0.72;
|
|
578
|
+
readonly baseRoundBandCount: 0;
|
|
579
|
+
readonly baseRibCount: 0;
|
|
580
|
+
readonly baseCarvingLevel: 0;
|
|
581
|
+
readonly capitalStyle: "none";
|
|
582
|
+
readonly capitalWidthScale: 1;
|
|
583
|
+
readonly capitalDepthScale: 1;
|
|
584
|
+
readonly capitalTierCount: 1;
|
|
585
|
+
readonly capitalStepSpread: 0.34;
|
|
586
|
+
readonly capitalBandCount: 0;
|
|
587
|
+
readonly capitalCarvingLevel: 0;
|
|
588
|
+
readonly ringCount: 0;
|
|
589
|
+
readonly ringSpread: 0.16;
|
|
590
|
+
readonly fluteCount: 0;
|
|
591
|
+
readonly spiralTwist: 0;
|
|
592
|
+
readonly spiralRibCount: 0;
|
|
593
|
+
readonly panelCount: 0;
|
|
594
|
+
readonly latheRingCount: 0;
|
|
595
|
+
readonly carvingLevel: 0;
|
|
596
|
+
readonly lowerBandEnabled: false;
|
|
597
|
+
readonly dentilCount: 0;
|
|
598
|
+
readonly beadCount: 0;
|
|
599
|
+
readonly braceWidth: 0.16;
|
|
600
|
+
readonly braceDepth: 0.16;
|
|
601
|
+
readonly braceBottomSpread: 1.2;
|
|
602
|
+
readonly braceTopSpread: 0.06;
|
|
603
|
+
readonly bracePlateEnabled: false;
|
|
604
|
+
};
|
|
605
|
+
readonly yFrameSupport: {
|
|
606
|
+
readonly label: "Y Support";
|
|
607
|
+
readonly supportStyle: "y-frame";
|
|
608
|
+
readonly style: "faceted";
|
|
609
|
+
readonly crossSection: "rectangular";
|
|
610
|
+
readonly height: 2.5;
|
|
611
|
+
readonly radius: 0.08;
|
|
612
|
+
readonly width: 0.16;
|
|
613
|
+
readonly depth: 0.16;
|
|
614
|
+
readonly edgeSoftness: 0.012;
|
|
615
|
+
readonly baseHeight: 0;
|
|
616
|
+
readonly capitalHeight: 0;
|
|
617
|
+
readonly shaftProfile: "straight";
|
|
618
|
+
readonly shaftTaper: 0;
|
|
619
|
+
readonly shaftBulge: 0;
|
|
620
|
+
readonly shaftStartScale: 1;
|
|
621
|
+
readonly shaftEndScale: 1;
|
|
622
|
+
readonly shaftSegmentCount: 1;
|
|
623
|
+
readonly shaftTwistStep: 0;
|
|
624
|
+
readonly shaftCornerRadius: 0.012;
|
|
625
|
+
readonly shaftDetail: "none";
|
|
626
|
+
readonly baseStyle: "none";
|
|
627
|
+
readonly baseWidthScale: 1;
|
|
628
|
+
readonly baseDepthScale: 1;
|
|
629
|
+
readonly baseTierCount: 1;
|
|
630
|
+
readonly baseStepSpread: 0.34;
|
|
631
|
+
readonly basePlinthHeightRatio: 0.44;
|
|
632
|
+
readonly baseRoundBandScale: 0.92;
|
|
633
|
+
readonly baseNeckScale: 0.72;
|
|
634
|
+
readonly baseRoundBandCount: 0;
|
|
635
|
+
readonly baseRibCount: 0;
|
|
636
|
+
readonly baseCarvingLevel: 0;
|
|
637
|
+
readonly capitalStyle: "none";
|
|
638
|
+
readonly capitalWidthScale: 1;
|
|
639
|
+
readonly capitalDepthScale: 1;
|
|
640
|
+
readonly capitalTierCount: 1;
|
|
641
|
+
readonly capitalStepSpread: 0.34;
|
|
642
|
+
readonly capitalBandCount: 0;
|
|
643
|
+
readonly capitalCarvingLevel: 0;
|
|
644
|
+
readonly ringCount: 0;
|
|
645
|
+
readonly ringSpread: 0.16;
|
|
646
|
+
readonly fluteCount: 0;
|
|
647
|
+
readonly spiralTwist: 0;
|
|
648
|
+
readonly spiralRibCount: 0;
|
|
649
|
+
readonly panelCount: 0;
|
|
650
|
+
readonly latheRingCount: 0;
|
|
651
|
+
readonly carvingLevel: 0;
|
|
652
|
+
readonly lowerBandEnabled: false;
|
|
653
|
+
readonly dentilCount: 0;
|
|
654
|
+
readonly beadCount: 0;
|
|
655
|
+
readonly braceWidth: 0.16;
|
|
656
|
+
readonly braceDepth: 0.16;
|
|
657
|
+
readonly braceBottomSpread: 0.2;
|
|
658
|
+
readonly braceTopSpread: 1;
|
|
659
|
+
readonly bracePlateEnabled: false;
|
|
660
|
+
};
|
|
661
|
+
readonly vFrameSupport: {
|
|
662
|
+
readonly label: "V Support";
|
|
663
|
+
readonly supportStyle: "v-frame";
|
|
664
|
+
readonly style: "faceted";
|
|
665
|
+
readonly crossSection: "rectangular";
|
|
666
|
+
readonly height: 2.5;
|
|
667
|
+
readonly radius: 0.08;
|
|
668
|
+
readonly width: 0.16;
|
|
669
|
+
readonly depth: 0.16;
|
|
670
|
+
readonly edgeSoftness: 0.012;
|
|
671
|
+
readonly baseHeight: 0;
|
|
672
|
+
readonly capitalHeight: 0;
|
|
673
|
+
readonly shaftProfile: "straight";
|
|
674
|
+
readonly shaftTaper: 0;
|
|
675
|
+
readonly shaftBulge: 0;
|
|
676
|
+
readonly shaftStartScale: 1;
|
|
677
|
+
readonly shaftEndScale: 1;
|
|
678
|
+
readonly shaftSegmentCount: 1;
|
|
679
|
+
readonly shaftTwistStep: 0;
|
|
680
|
+
readonly shaftCornerRadius: 0.012;
|
|
681
|
+
readonly shaftDetail: "none";
|
|
682
|
+
readonly baseStyle: "none";
|
|
683
|
+
readonly baseWidthScale: 1;
|
|
684
|
+
readonly baseDepthScale: 1;
|
|
685
|
+
readonly baseTierCount: 1;
|
|
686
|
+
readonly baseStepSpread: 0.34;
|
|
687
|
+
readonly basePlinthHeightRatio: 0.44;
|
|
688
|
+
readonly baseRoundBandScale: 0.92;
|
|
689
|
+
readonly baseNeckScale: 0.72;
|
|
690
|
+
readonly baseRoundBandCount: 0;
|
|
691
|
+
readonly baseRibCount: 0;
|
|
692
|
+
readonly baseCarvingLevel: 0;
|
|
693
|
+
readonly capitalStyle: "none";
|
|
694
|
+
readonly capitalWidthScale: 1;
|
|
695
|
+
readonly capitalDepthScale: 1;
|
|
696
|
+
readonly capitalTierCount: 1;
|
|
697
|
+
readonly capitalStepSpread: 0.34;
|
|
698
|
+
readonly capitalBandCount: 0;
|
|
699
|
+
readonly capitalCarvingLevel: 0;
|
|
700
|
+
readonly ringCount: 0;
|
|
701
|
+
readonly ringSpread: 0.16;
|
|
702
|
+
readonly fluteCount: 0;
|
|
703
|
+
readonly spiralTwist: 0;
|
|
704
|
+
readonly spiralRibCount: 0;
|
|
705
|
+
readonly panelCount: 0;
|
|
706
|
+
readonly latheRingCount: 0;
|
|
707
|
+
readonly carvingLevel: 0;
|
|
708
|
+
readonly lowerBandEnabled: false;
|
|
709
|
+
readonly dentilCount: 0;
|
|
710
|
+
readonly beadCount: 0;
|
|
711
|
+
readonly braceWidth: 0.16;
|
|
712
|
+
readonly braceDepth: 0.16;
|
|
713
|
+
readonly braceBottomSpread: 0.2;
|
|
714
|
+
readonly braceTopSpread: 1;
|
|
715
|
+
readonly bracePlateEnabled: false;
|
|
716
|
+
};
|
|
717
|
+
readonly xBraceSupport: {
|
|
718
|
+
readonly label: "X Brace";
|
|
719
|
+
readonly supportStyle: "x-brace";
|
|
720
|
+
readonly style: "faceted";
|
|
721
|
+
readonly crossSection: "rectangular";
|
|
722
|
+
readonly height: 2.5;
|
|
723
|
+
readonly radius: 0.07;
|
|
724
|
+
readonly width: 0.14;
|
|
725
|
+
readonly depth: 0.14;
|
|
726
|
+
readonly edgeSoftness: 0.01;
|
|
727
|
+
readonly baseHeight: 0;
|
|
728
|
+
readonly capitalHeight: 0;
|
|
729
|
+
readonly shaftProfile: "straight";
|
|
730
|
+
readonly shaftTaper: 0;
|
|
731
|
+
readonly shaftBulge: 0;
|
|
732
|
+
readonly shaftStartScale: 1;
|
|
733
|
+
readonly shaftEndScale: 1;
|
|
734
|
+
readonly shaftSegmentCount: 1;
|
|
735
|
+
readonly shaftTwistStep: 0;
|
|
736
|
+
readonly shaftCornerRadius: 0.01;
|
|
737
|
+
readonly shaftDetail: "none";
|
|
738
|
+
readonly baseStyle: "none";
|
|
739
|
+
readonly baseWidthScale: 1;
|
|
740
|
+
readonly baseDepthScale: 1;
|
|
741
|
+
readonly baseTierCount: 1;
|
|
742
|
+
readonly baseStepSpread: 0.34;
|
|
743
|
+
readonly basePlinthHeightRatio: 0.44;
|
|
744
|
+
readonly baseRoundBandScale: 0.92;
|
|
745
|
+
readonly baseNeckScale: 0.72;
|
|
746
|
+
readonly baseRoundBandCount: 0;
|
|
747
|
+
readonly baseRibCount: 0;
|
|
748
|
+
readonly baseCarvingLevel: 0;
|
|
749
|
+
readonly capitalStyle: "none";
|
|
750
|
+
readonly capitalWidthScale: 1;
|
|
751
|
+
readonly capitalDepthScale: 1;
|
|
752
|
+
readonly capitalTierCount: 1;
|
|
753
|
+
readonly capitalStepSpread: 0.34;
|
|
754
|
+
readonly capitalBandCount: 0;
|
|
755
|
+
readonly capitalCarvingLevel: 0;
|
|
756
|
+
readonly ringCount: 0;
|
|
757
|
+
readonly ringSpread: 0.16;
|
|
758
|
+
readonly fluteCount: 0;
|
|
759
|
+
readonly spiralTwist: 0;
|
|
760
|
+
readonly spiralRibCount: 0;
|
|
761
|
+
readonly panelCount: 0;
|
|
762
|
+
readonly latheRingCount: 0;
|
|
763
|
+
readonly carvingLevel: 0;
|
|
764
|
+
readonly lowerBandEnabled: false;
|
|
765
|
+
readonly dentilCount: 0;
|
|
766
|
+
readonly beadCount: 0;
|
|
767
|
+
readonly braceWidth: 0.14;
|
|
768
|
+
readonly braceDepth: 0.14;
|
|
769
|
+
readonly braceBottomSpread: 1;
|
|
770
|
+
readonly braceTopSpread: 1;
|
|
771
|
+
readonly bracePlateEnabled: false;
|
|
772
|
+
};
|
|
773
|
+
readonly kBraceSupport: {
|
|
774
|
+
readonly label: "K Brace";
|
|
775
|
+
readonly supportStyle: "k-brace";
|
|
776
|
+
readonly style: "faceted";
|
|
777
|
+
readonly crossSection: "rectangular";
|
|
778
|
+
readonly height: 2.5;
|
|
779
|
+
readonly radius: 0.07;
|
|
780
|
+
readonly width: 0.14;
|
|
781
|
+
readonly depth: 0.14;
|
|
782
|
+
readonly edgeSoftness: 0.01;
|
|
783
|
+
readonly baseHeight: 0;
|
|
784
|
+
readonly capitalHeight: 0;
|
|
785
|
+
readonly shaftProfile: "straight";
|
|
786
|
+
readonly shaftTaper: 0;
|
|
787
|
+
readonly shaftBulge: 0;
|
|
788
|
+
readonly shaftStartScale: 1;
|
|
789
|
+
readonly shaftEndScale: 1;
|
|
790
|
+
readonly shaftSegmentCount: 1;
|
|
791
|
+
readonly shaftTwistStep: 0;
|
|
792
|
+
readonly shaftCornerRadius: 0.01;
|
|
793
|
+
readonly shaftDetail: "none";
|
|
794
|
+
readonly baseStyle: "none";
|
|
795
|
+
readonly baseWidthScale: 1;
|
|
796
|
+
readonly baseDepthScale: 1;
|
|
797
|
+
readonly baseTierCount: 1;
|
|
798
|
+
readonly baseStepSpread: 0.34;
|
|
799
|
+
readonly basePlinthHeightRatio: 0.44;
|
|
800
|
+
readonly baseRoundBandScale: 0.92;
|
|
801
|
+
readonly baseNeckScale: 0.72;
|
|
802
|
+
readonly baseRoundBandCount: 0;
|
|
803
|
+
readonly baseRibCount: 0;
|
|
804
|
+
readonly baseCarvingLevel: 0;
|
|
805
|
+
readonly capitalStyle: "none";
|
|
806
|
+
readonly capitalWidthScale: 1;
|
|
807
|
+
readonly capitalDepthScale: 1;
|
|
808
|
+
readonly capitalTierCount: 1;
|
|
809
|
+
readonly capitalStepSpread: 0.34;
|
|
810
|
+
readonly capitalBandCount: 0;
|
|
811
|
+
readonly capitalCarvingLevel: 0;
|
|
812
|
+
readonly ringCount: 0;
|
|
813
|
+
readonly ringSpread: 0.16;
|
|
814
|
+
readonly fluteCount: 0;
|
|
815
|
+
readonly spiralTwist: 0;
|
|
816
|
+
readonly spiralRibCount: 0;
|
|
817
|
+
readonly panelCount: 0;
|
|
818
|
+
readonly latheRingCount: 0;
|
|
819
|
+
readonly carvingLevel: 0;
|
|
820
|
+
readonly lowerBandEnabled: false;
|
|
821
|
+
readonly dentilCount: 0;
|
|
822
|
+
readonly beadCount: 0;
|
|
823
|
+
readonly braceWidth: 0.14;
|
|
824
|
+
readonly braceDepth: 0.14;
|
|
825
|
+
readonly braceBottomSpread: 1;
|
|
826
|
+
readonly braceTopSpread: 1;
|
|
827
|
+
readonly bracePlateEnabled: false;
|
|
828
|
+
};
|
|
829
|
+
readonly singleStrutSupport: {
|
|
830
|
+
readonly label: "Single Strut";
|
|
831
|
+
readonly supportStyle: "single-strut";
|
|
832
|
+
readonly style: "faceted";
|
|
833
|
+
readonly crossSection: "rectangular";
|
|
834
|
+
readonly height: 2.5;
|
|
835
|
+
readonly radius: 0.07;
|
|
836
|
+
readonly width: 0.14;
|
|
837
|
+
readonly depth: 0.14;
|
|
838
|
+
readonly edgeSoftness: 0.01;
|
|
839
|
+
readonly baseHeight: 0;
|
|
840
|
+
readonly capitalHeight: 0;
|
|
841
|
+
readonly shaftProfile: "straight";
|
|
842
|
+
readonly shaftTaper: 0;
|
|
843
|
+
readonly shaftBulge: 0;
|
|
844
|
+
readonly shaftStartScale: 1;
|
|
845
|
+
readonly shaftEndScale: 1;
|
|
846
|
+
readonly shaftSegmentCount: 1;
|
|
847
|
+
readonly shaftTwistStep: 0;
|
|
848
|
+
readonly shaftCornerRadius: 0.01;
|
|
849
|
+
readonly shaftDetail: "none";
|
|
850
|
+
readonly baseStyle: "none";
|
|
851
|
+
readonly baseWidthScale: 1;
|
|
852
|
+
readonly baseDepthScale: 1;
|
|
853
|
+
readonly baseTierCount: 1;
|
|
854
|
+
readonly baseStepSpread: 0.34;
|
|
855
|
+
readonly basePlinthHeightRatio: 0.44;
|
|
856
|
+
readonly baseRoundBandScale: 0.92;
|
|
857
|
+
readonly baseNeckScale: 0.72;
|
|
858
|
+
readonly baseRoundBandCount: 0;
|
|
859
|
+
readonly baseRibCount: 0;
|
|
860
|
+
readonly baseCarvingLevel: 0;
|
|
861
|
+
readonly capitalStyle: "none";
|
|
862
|
+
readonly capitalWidthScale: 1;
|
|
863
|
+
readonly capitalDepthScale: 1;
|
|
864
|
+
readonly capitalTierCount: 1;
|
|
865
|
+
readonly capitalStepSpread: 0.34;
|
|
866
|
+
readonly capitalBandCount: 0;
|
|
867
|
+
readonly capitalCarvingLevel: 0;
|
|
868
|
+
readonly ringCount: 0;
|
|
869
|
+
readonly ringSpread: 0.16;
|
|
870
|
+
readonly fluteCount: 0;
|
|
871
|
+
readonly spiralTwist: 0;
|
|
872
|
+
readonly spiralRibCount: 0;
|
|
873
|
+
readonly panelCount: 0;
|
|
874
|
+
readonly latheRingCount: 0;
|
|
875
|
+
readonly carvingLevel: 0;
|
|
876
|
+
readonly lowerBandEnabled: false;
|
|
877
|
+
readonly dentilCount: 0;
|
|
878
|
+
readonly beadCount: 0;
|
|
879
|
+
readonly braceWidth: 0.14;
|
|
880
|
+
readonly braceDepth: 0.14;
|
|
881
|
+
readonly braceBottomSpread: 1;
|
|
882
|
+
readonly braceTopSpread: 1;
|
|
883
|
+
readonly bracePlateEnabled: false;
|
|
884
|
+
};
|
|
885
|
+
readonly tripodSupport: {
|
|
886
|
+
readonly label: "Tripod Support";
|
|
887
|
+
readonly supportStyle: "tripod";
|
|
888
|
+
readonly style: "faceted";
|
|
889
|
+
readonly crossSection: "rectangular";
|
|
890
|
+
readonly height: 2.5;
|
|
891
|
+
readonly radius: 0.07;
|
|
892
|
+
readonly width: 0.14;
|
|
893
|
+
readonly depth: 0.14;
|
|
894
|
+
readonly edgeSoftness: 0.01;
|
|
895
|
+
readonly baseHeight: 0;
|
|
896
|
+
readonly capitalHeight: 0;
|
|
897
|
+
readonly shaftProfile: "straight";
|
|
898
|
+
readonly shaftTaper: 0;
|
|
899
|
+
readonly shaftBulge: 0;
|
|
900
|
+
readonly shaftStartScale: 1;
|
|
901
|
+
readonly shaftEndScale: 1;
|
|
902
|
+
readonly shaftSegmentCount: 1;
|
|
903
|
+
readonly shaftTwistStep: 0;
|
|
904
|
+
readonly shaftCornerRadius: 0.01;
|
|
905
|
+
readonly shaftDetail: "none";
|
|
906
|
+
readonly baseStyle: "none";
|
|
907
|
+
readonly baseWidthScale: 1;
|
|
908
|
+
readonly baseDepthScale: 1;
|
|
909
|
+
readonly baseTierCount: 1;
|
|
910
|
+
readonly baseStepSpread: 0.34;
|
|
911
|
+
readonly basePlinthHeightRatio: 0.44;
|
|
912
|
+
readonly baseRoundBandScale: 0.92;
|
|
913
|
+
readonly baseNeckScale: 0.72;
|
|
914
|
+
readonly baseRoundBandCount: 0;
|
|
915
|
+
readonly baseRibCount: 0;
|
|
916
|
+
readonly baseCarvingLevel: 0;
|
|
917
|
+
readonly capitalStyle: "none";
|
|
918
|
+
readonly capitalWidthScale: 1;
|
|
919
|
+
readonly capitalDepthScale: 1;
|
|
920
|
+
readonly capitalTierCount: 1;
|
|
921
|
+
readonly capitalStepSpread: 0.34;
|
|
922
|
+
readonly capitalBandCount: 0;
|
|
923
|
+
readonly capitalCarvingLevel: 0;
|
|
924
|
+
readonly ringCount: 0;
|
|
925
|
+
readonly ringSpread: 0.16;
|
|
926
|
+
readonly fluteCount: 0;
|
|
927
|
+
readonly spiralTwist: 0;
|
|
928
|
+
readonly spiralRibCount: 0;
|
|
929
|
+
readonly panelCount: 0;
|
|
930
|
+
readonly latheRingCount: 0;
|
|
931
|
+
readonly carvingLevel: 0;
|
|
932
|
+
readonly lowerBandEnabled: false;
|
|
933
|
+
readonly dentilCount: 0;
|
|
934
|
+
readonly beadCount: 0;
|
|
935
|
+
readonly braceWidth: 0.14;
|
|
936
|
+
readonly braceDepth: 0.14;
|
|
937
|
+
readonly braceBottomSpread: 1.1;
|
|
938
|
+
readonly braceTopSpread: 1.1;
|
|
939
|
+
readonly bracePlateEnabled: false;
|
|
940
|
+
};
|
|
941
|
+
readonly trestleSupport: {
|
|
942
|
+
readonly label: "Trestle Frame";
|
|
943
|
+
readonly supportStyle: "trestle";
|
|
944
|
+
readonly style: "faceted";
|
|
945
|
+
readonly crossSection: "rectangular";
|
|
946
|
+
readonly height: 2.5;
|
|
947
|
+
readonly radius: 0.07;
|
|
948
|
+
readonly width: 0.14;
|
|
949
|
+
readonly depth: 0.14;
|
|
950
|
+
readonly edgeSoftness: 0.01;
|
|
951
|
+
readonly baseHeight: 0;
|
|
952
|
+
readonly capitalHeight: 0;
|
|
953
|
+
readonly shaftProfile: "straight";
|
|
954
|
+
readonly shaftTaper: 0;
|
|
955
|
+
readonly shaftBulge: 0;
|
|
956
|
+
readonly shaftStartScale: 1;
|
|
957
|
+
readonly shaftEndScale: 1;
|
|
958
|
+
readonly shaftSegmentCount: 1;
|
|
959
|
+
readonly shaftTwistStep: 0;
|
|
960
|
+
readonly shaftCornerRadius: 0.01;
|
|
961
|
+
readonly shaftDetail: "none";
|
|
962
|
+
readonly baseStyle: "none";
|
|
963
|
+
readonly baseWidthScale: 1;
|
|
964
|
+
readonly baseDepthScale: 1;
|
|
965
|
+
readonly baseTierCount: 1;
|
|
966
|
+
readonly baseStepSpread: 0.34;
|
|
967
|
+
readonly basePlinthHeightRatio: 0.44;
|
|
968
|
+
readonly baseRoundBandScale: 0.92;
|
|
969
|
+
readonly baseNeckScale: 0.72;
|
|
970
|
+
readonly baseRoundBandCount: 0;
|
|
971
|
+
readonly baseRibCount: 0;
|
|
972
|
+
readonly baseCarvingLevel: 0;
|
|
973
|
+
readonly capitalStyle: "none";
|
|
974
|
+
readonly capitalWidthScale: 1;
|
|
975
|
+
readonly capitalDepthScale: 1;
|
|
976
|
+
readonly capitalTierCount: 1;
|
|
977
|
+
readonly capitalStepSpread: 0.34;
|
|
978
|
+
readonly capitalBandCount: 0;
|
|
979
|
+
readonly capitalCarvingLevel: 0;
|
|
980
|
+
readonly ringCount: 0;
|
|
981
|
+
readonly ringSpread: 0.16;
|
|
982
|
+
readonly fluteCount: 0;
|
|
983
|
+
readonly spiralTwist: 0;
|
|
984
|
+
readonly spiralRibCount: 0;
|
|
985
|
+
readonly panelCount: 0;
|
|
986
|
+
readonly latheRingCount: 0;
|
|
987
|
+
readonly carvingLevel: 0;
|
|
988
|
+
readonly lowerBandEnabled: false;
|
|
989
|
+
readonly dentilCount: 0;
|
|
990
|
+
readonly beadCount: 0;
|
|
991
|
+
readonly braceWidth: 0.14;
|
|
992
|
+
readonly braceDepth: 0.14;
|
|
993
|
+
readonly braceBottomSpread: 1.2;
|
|
994
|
+
readonly braceTopSpread: 1;
|
|
995
|
+
readonly bracePlateEnabled: false;
|
|
996
|
+
};
|
|
997
|
+
readonly portalFrameSupport: {
|
|
998
|
+
readonly label: "Portal Frame";
|
|
999
|
+
readonly supportStyle: "portal-frame";
|
|
1000
|
+
readonly style: "faceted";
|
|
1001
|
+
readonly crossSection: "rectangular";
|
|
1002
|
+
readonly height: 2.5;
|
|
1003
|
+
readonly radius: 0.08;
|
|
1004
|
+
readonly width: 0.16;
|
|
1005
|
+
readonly depth: 0.16;
|
|
1006
|
+
readonly edgeSoftness: 0.012;
|
|
1007
|
+
readonly baseHeight: 0;
|
|
1008
|
+
readonly capitalHeight: 0;
|
|
1009
|
+
readonly shaftProfile: "straight";
|
|
1010
|
+
readonly shaftTaper: 0;
|
|
1011
|
+
readonly shaftBulge: 0;
|
|
1012
|
+
readonly shaftStartScale: 1;
|
|
1013
|
+
readonly shaftEndScale: 1;
|
|
1014
|
+
readonly shaftSegmentCount: 1;
|
|
1015
|
+
readonly shaftTwistStep: 0;
|
|
1016
|
+
readonly shaftCornerRadius: 0.012;
|
|
1017
|
+
readonly shaftDetail: "none";
|
|
1018
|
+
readonly baseStyle: "none";
|
|
1019
|
+
readonly baseWidthScale: 1;
|
|
1020
|
+
readonly baseDepthScale: 1;
|
|
1021
|
+
readonly baseTierCount: 1;
|
|
1022
|
+
readonly baseStepSpread: 0.34;
|
|
1023
|
+
readonly basePlinthHeightRatio: 0.44;
|
|
1024
|
+
readonly baseRoundBandScale: 0.92;
|
|
1025
|
+
readonly baseNeckScale: 0.72;
|
|
1026
|
+
readonly baseRoundBandCount: 0;
|
|
1027
|
+
readonly baseRibCount: 0;
|
|
1028
|
+
readonly baseCarvingLevel: 0;
|
|
1029
|
+
readonly capitalStyle: "none";
|
|
1030
|
+
readonly capitalWidthScale: 1;
|
|
1031
|
+
readonly capitalDepthScale: 1;
|
|
1032
|
+
readonly capitalTierCount: 1;
|
|
1033
|
+
readonly capitalStepSpread: 0.34;
|
|
1034
|
+
readonly capitalBandCount: 0;
|
|
1035
|
+
readonly capitalCarvingLevel: 0;
|
|
1036
|
+
readonly ringCount: 0;
|
|
1037
|
+
readonly ringSpread: 0.16;
|
|
1038
|
+
readonly fluteCount: 0;
|
|
1039
|
+
readonly spiralTwist: 0;
|
|
1040
|
+
readonly spiralRibCount: 0;
|
|
1041
|
+
readonly panelCount: 0;
|
|
1042
|
+
readonly latheRingCount: 0;
|
|
1043
|
+
readonly carvingLevel: 0;
|
|
1044
|
+
readonly lowerBandEnabled: false;
|
|
1045
|
+
readonly dentilCount: 0;
|
|
1046
|
+
readonly beadCount: 0;
|
|
1047
|
+
readonly braceWidth: 0.16;
|
|
1048
|
+
readonly braceDepth: 0.16;
|
|
1049
|
+
readonly braceBottomSpread: 1.4;
|
|
1050
|
+
readonly braceTopSpread: 0.2;
|
|
1051
|
+
readonly bracePlateEnabled: false;
|
|
1052
|
+
};
|
|
1053
|
+
readonly boxFrameSupport: {
|
|
1054
|
+
readonly label: "Box Frame";
|
|
1055
|
+
readonly supportStyle: "box-frame";
|
|
1056
|
+
readonly style: "faceted";
|
|
1057
|
+
readonly crossSection: "rectangular";
|
|
1058
|
+
readonly height: 2.5;
|
|
1059
|
+
readonly radius: 0.07;
|
|
1060
|
+
readonly width: 0.14;
|
|
1061
|
+
readonly depth: 0.14;
|
|
1062
|
+
readonly edgeSoftness: 0.01;
|
|
1063
|
+
readonly baseHeight: 0;
|
|
1064
|
+
readonly capitalHeight: 0;
|
|
1065
|
+
readonly shaftProfile: "straight";
|
|
1066
|
+
readonly shaftTaper: 0;
|
|
1067
|
+
readonly shaftBulge: 0;
|
|
1068
|
+
readonly shaftStartScale: 1;
|
|
1069
|
+
readonly shaftEndScale: 1;
|
|
1070
|
+
readonly shaftSegmentCount: 1;
|
|
1071
|
+
readonly shaftTwistStep: 0;
|
|
1072
|
+
readonly shaftCornerRadius: 0.01;
|
|
1073
|
+
readonly shaftDetail: "none";
|
|
1074
|
+
readonly baseStyle: "none";
|
|
1075
|
+
readonly baseWidthScale: 1;
|
|
1076
|
+
readonly baseDepthScale: 1;
|
|
1077
|
+
readonly baseTierCount: 1;
|
|
1078
|
+
readonly baseStepSpread: 0.34;
|
|
1079
|
+
readonly basePlinthHeightRatio: 0.44;
|
|
1080
|
+
readonly baseRoundBandScale: 0.92;
|
|
1081
|
+
readonly baseNeckScale: 0.72;
|
|
1082
|
+
readonly baseRoundBandCount: 0;
|
|
1083
|
+
readonly baseRibCount: 0;
|
|
1084
|
+
readonly baseCarvingLevel: 0;
|
|
1085
|
+
readonly capitalStyle: "none";
|
|
1086
|
+
readonly capitalWidthScale: 1;
|
|
1087
|
+
readonly capitalDepthScale: 1;
|
|
1088
|
+
readonly capitalTierCount: 1;
|
|
1089
|
+
readonly capitalStepSpread: 0.34;
|
|
1090
|
+
readonly capitalBandCount: 0;
|
|
1091
|
+
readonly capitalCarvingLevel: 0;
|
|
1092
|
+
readonly ringCount: 0;
|
|
1093
|
+
readonly ringSpread: 0.16;
|
|
1094
|
+
readonly fluteCount: 0;
|
|
1095
|
+
readonly spiralTwist: 0;
|
|
1096
|
+
readonly spiralRibCount: 0;
|
|
1097
|
+
readonly panelCount: 0;
|
|
1098
|
+
readonly latheRingCount: 0;
|
|
1099
|
+
readonly carvingLevel: 0;
|
|
1100
|
+
readonly lowerBandEnabled: false;
|
|
1101
|
+
readonly dentilCount: 0;
|
|
1102
|
+
readonly beadCount: 0;
|
|
1103
|
+
readonly braceWidth: 0.14;
|
|
1104
|
+
readonly braceDepth: 0.14;
|
|
1105
|
+
readonly braceBottomSpread: 1.4;
|
|
1106
|
+
readonly braceTopSpread: 1;
|
|
1107
|
+
readonly bracePlateEnabled: false;
|
|
1108
|
+
};
|
|
517
1109
|
};
|
|
518
1110
|
export type ColumnPresetId = keyof typeof COLUMN_PRESETS;
|
|
519
1111
|
export type ColumnNode = z.infer<typeof ColumnNode>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"column.d.ts","sourceRoot":"","sources":["../../../src/schema/nodes/column.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAIvB,eAAO,MAAM,WAAW;;;;;;;EAOtB,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;EAM7B,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;EAAqE,CAAA;AAEpG,eAAO,MAAM,iBAAiB;;;;;;EAAmE,CAAA;AAEjG,eAAO,MAAM,gBAAgB;;;;EAA6C,CAAA;AAE1E,eAAO,MAAM,eAAe;;;;;;;;;EAS1B,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;EAa7B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;EAA4C,CAAA;AAE5E,eAAO,MAAM,sBAAsB;;;;;EAA8C,CAAA;AAEjF,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAA;AACrD,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AACnE,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AACnE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAA;AACjE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAA;AAC/D,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAA;AAC7D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AACnE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAA;AACrE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"column.d.ts","sourceRoot":"","sources":["../../../src/schema/nodes/column.ts"],"names":[],"mappings":"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"}
|