jsketcher/web/app/cad/craft/primitives/sphere/sphereOpSchema.js

15 lines
No EOL
263 B
JavaScript

import booleanOptionSchema from '../booleanOptionSchema';
export default {
datum: {
type: 'datum',
optional: true,
initializeBySelection: 0
},
radius: {
type: 'number',
defaultValue: 250,
min: 0
},
boolean: booleanOptionSchema
}