mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 08:53:25 +01:00
20 lines
337 B
JavaScript
20 lines
337 B
JavaScript
export default {
|
|
angle: {
|
|
type: 'number',
|
|
defaultValue: 45
|
|
},
|
|
face: {
|
|
type: 'face',
|
|
initializeBySelection: 0
|
|
},
|
|
axis: {
|
|
type: 'sketchObject',
|
|
initializeBySelection: 0
|
|
},
|
|
boolean: {
|
|
type: 'enum',
|
|
values: ['INTERSECT', 'SUBTRACT', 'UNION'],
|
|
defaultValue: 'UNION',
|
|
optional: true
|
|
}
|
|
}
|