boolean simplify checkbox related fixes

This commit is contained in:
Mike Molinari 2022-11-14 01:15:34 +00:00
parent 48cd6295d2
commit 4a87211b7f
9 changed files with 15 additions and 4 deletions

View file

@ -73,7 +73,8 @@ export const BooleanOperation: OperationDescriptor<BooleanParams> = {
info: 'makes a cut based on 2D sketch',
maskingParams: {
boolean: {
kind: 'UNION'
kind: 'UNION',
simplify: true,
}
}
},
@ -84,7 +85,8 @@ export const BooleanOperation: OperationDescriptor<BooleanParams> = {
info: 'makes a cut based on 2D sketch',
maskingParams: {
boolean: {
kind: 'SUBTRACT'
kind: 'SUBTRACT',
simplify: true,
}
}
},
@ -95,7 +97,8 @@ export const BooleanOperation: OperationDescriptor<BooleanParams> = {
info: 'makes a cut based on 2D sketch',
maskingParams: {
boolean: {
kind: 'INTERSECT'
kind: 'INTERSECT',
simplify: true,
}
}
}

View file

@ -93,6 +93,7 @@ export const LoftOperation: OperationDescriptor<LoftParams> = {
name: 'boolean',
label: 'boolean',
optional: true,
simplify: true,
}
],

View file

@ -60,6 +60,7 @@ export const PrimitiveBoxOperation: OperationDescriptor<PrimitiveBoxParams> = {
name: 'boolean',
label: 'boolean',
optional: true,
simplify: true,
}
],

View file

@ -60,6 +60,7 @@ export const PrimitiveConeOperation: OperationDescriptor<PrimitiveConeParams> =
name: 'boolean',
label: 'boolean',
optional: true,
simplify: true,
}
],

View file

@ -53,6 +53,7 @@ export const PrimitiveCylinderOperation: OperationDescriptor<PrimitiveCylinderPa
name: 'boolean',
label: 'boolean',
optional: true,
simplify: true,
}
],

View file

@ -47,6 +47,7 @@ export const PrimitiveSphereOperation: OperationDescriptor<PrimitiveSphereParams
name: 'boolean',
label: 'boolean',
optional: true,
simplify: true,
}
],

View file

@ -53,6 +53,7 @@ export const PrimitiveTorusOperation: OperationDescriptor<PrimitiveTorusParams>
name: 'boolean',
label: 'boolean',
optional: true,
simplify: true,
}
],

View file

@ -90,7 +90,8 @@ export const RevolveOperation: OperationDescriptor<RevolveParams> = {
name: 'boolean',
label: 'boolean',
optional: true,
defaultValue: 'NONE'
defaultValue: 'NONE',
simplify: true,
}
],

View file

@ -85,6 +85,7 @@ export const SweepOperation: OperationDescriptor<SweepParams> = {
name: 'boolean',
label: 'boolean',
optional: true,
simplify: true,
}
],