File tree Expand file tree Collapse file tree 2 files changed +301
-257
lines changed Expand file tree Collapse file tree 2 files changed +301
-257
lines changed Original file line number Diff line number Diff line change 19434
19434
"type"
19435
19435
]
19436
19436
},
19437
+ {
19438
+ "description": "Mirror the input entities over the specified axis. (Currently only supports sketches)",
19439
+ "type": "object",
19440
+ "properties": {
19441
+ "axis": {
19442
+ "description": "Axis to use as mirror.",
19443
+ "allOf": [
19444
+ {
19445
+ "$ref": "#/components/schemas/Point3d"
19446
+ }
19447
+ ]
19448
+ },
19449
+ "ids": {
19450
+ "description": "ID of the mirror entities.",
19451
+ "type": "array",
19452
+ "items": {
19453
+ "type": "string",
19454
+ "format": "uuid"
19455
+ }
19456
+ },
19457
+ "point": {
19458
+ "description": "Point through which the mirror axis passes.",
19459
+ "allOf": [
19460
+ {
19461
+ "$ref": "#/components/schemas/Point3d"
19462
+ }
19463
+ ]
19464
+ },
19465
+ "type": {
19466
+ "type": "string",
19467
+ "enum": [
19468
+ "entity_mirror"
19469
+ ]
19470
+ }
19471
+ },
19472
+ "required": [
19473
+ "axis",
19474
+ "ids",
19475
+ "point",
19476
+ "type"
19477
+ ]
19478
+ },
19437
19479
{
19438
19480
"description": "Enter edit mode",
19439
19481
"type": "object",
21338
21380
"type": "object",
21339
21381
"properties": {
21340
21382
"object_ids": {
21341
- "nullable ": true ,
21342
- "description ": "Which objects to fit to" ,
21383
+ "description ": "Which objects to fit camera to; if empty, fit to all non-default objects. Defaults to empty vector." ,
21384
+ "default ": [] ,
21343
21385
"type": "array",
21344
21386
"items": {
21345
21387
"type": "string",
You can’t perform that action at this time.
0 commit comments