Add bidirectionalLength

This commit is contained in:
Pierre Jacquier
2025-06-16 12:57:38 -04:00
parent 4f3742c826
commit e8ab2ccbe3
4 changed files with 56 additions and 11 deletions

View File

@ -61,7 +61,7 @@ export type ModelingCommandSchema = {
sketches: Selections
length: KclCommandValue
symmetric?: boolean
// bidirectionalLength?: KclCommandValue
bidirectionalLength?: KclCommandValue
}
Sweep: {
// Enables editing workflow
@ -405,13 +405,12 @@ export const modelingMachineCommandConfig: StateMachineCommandSetConfig<
{ name: 'True', value: true },
],
},
// bidirectionalLength: {
// inputType: 'kcl',
// defaultValue: KCL_DEFAULT_LENGTH,
// skip: true,
// hidden: false,
// required: false,
// },
bidirectionalLength: {
inputType: 'kcl',
defaultValue: KCL_DEFAULT_LENGTH,
skip: true,
required: false,
},
},
},
Sweep: {