jsketcher/web/app/cad/craft/primitives/box/boxOpSchema.js

25 lines
No EOL
403 B
JavaScript

import booleanOptionSchema from '../booleanOptionSchema';
export default {
datum: {
type: 'datum',
optional: true,
initializeBySelection: 0
},
width: {
type: 'number',
defaultValue: 500,
min: 0
},
height: {
type: 'number',
defaultValue: 500,
min: 0
},
depth: {
type: 'number',
defaultValue: 500,
min: 0
},
boolean: booleanOptionSchema
}