mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-24 01:15:25 +01:00
boolean simplify checkbox related fixes
This commit is contained in:
parent
48cd6295d2
commit
4a87211b7f
9 changed files with 15 additions and 4 deletions
|
|
@ -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,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -93,6 +93,7 @@ export const LoftOperation: OperationDescriptor<LoftParams> = {
|
|||
name: 'boolean',
|
||||
label: 'boolean',
|
||||
optional: true,
|
||||
simplify: true,
|
||||
}
|
||||
|
||||
],
|
||||
|
|
|
|||
|
|
@ -60,6 +60,7 @@ export const PrimitiveBoxOperation: OperationDescriptor<PrimitiveBoxParams> = {
|
|||
name: 'boolean',
|
||||
label: 'boolean',
|
||||
optional: true,
|
||||
simplify: true,
|
||||
}
|
||||
|
||||
],
|
||||
|
|
|
|||
|
|
@ -60,6 +60,7 @@ export const PrimitiveConeOperation: OperationDescriptor<PrimitiveConeParams> =
|
|||
name: 'boolean',
|
||||
label: 'boolean',
|
||||
optional: true,
|
||||
simplify: true,
|
||||
}
|
||||
|
||||
],
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ export const PrimitiveCylinderOperation: OperationDescriptor<PrimitiveCylinderPa
|
|||
name: 'boolean',
|
||||
label: 'boolean',
|
||||
optional: true,
|
||||
simplify: true,
|
||||
}
|
||||
|
||||
],
|
||||
|
|
|
|||
|
|
@ -47,6 +47,7 @@ export const PrimitiveSphereOperation: OperationDescriptor<PrimitiveSphereParams
|
|||
name: 'boolean',
|
||||
label: 'boolean',
|
||||
optional: true,
|
||||
simplify: true,
|
||||
}
|
||||
|
||||
],
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ export const PrimitiveTorusOperation: OperationDescriptor<PrimitiveTorusParams>
|
|||
name: 'boolean',
|
||||
label: 'boolean',
|
||||
optional: true,
|
||||
simplify: true,
|
||||
}
|
||||
|
||||
],
|
||||
|
|
|
|||
|
|
@ -90,7 +90,8 @@ export const RevolveOperation: OperationDescriptor<RevolveParams> = {
|
|||
name: 'boolean',
|
||||
label: 'boolean',
|
||||
optional: true,
|
||||
defaultValue: 'NONE'
|
||||
defaultValue: 'NONE',
|
||||
simplify: true,
|
||||
}
|
||||
|
||||
],
|
||||
|
|
|
|||
|
|
@ -85,6 +85,7 @@ export const SweepOperation: OperationDescriptor<SweepParams> = {
|
|||
name: 'boolean',
|
||||
label: 'boolean',
|
||||
optional: true,
|
||||
simplify: true,
|
||||
}
|
||||
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue