Clean up extrude specific changes

This commit is contained in:
Pierre Jacquier
2025-06-17 10:48:47 -04:00
parent fc6a9e33e4
commit 78a47ab3e1
4 changed files with 2 additions and 121 deletions

View File

@ -60,9 +60,6 @@ export type ModelingCommandSchema = {
// KCL stdlib arguments
sketches: Selections
length: KclCommandValue
symmetric?: boolean
bidirectionalLength?: KclCommandValue
twistAngle?: KclCommandValue
}
Sweep: {
// Enables editing workflow
@ -397,25 +394,6 @@ export const modelingMachineCommandConfig: StateMachineCommandSetConfig<
defaultValue: KCL_DEFAULT_LENGTH,
required: true,
},
symmetric: {
inputType: 'options',
skip: true,
required: false,
options: [
{ name: 'False', value: false },
{ name: 'True', value: true },
],
},
bidirectionalLength: {
inputType: 'kcl',
skip: true,
required: false,
},
twistAngle: {
inputType: 'kcl',
skip: true,
required: false,
},
},
},
Sweep: {