jsketcher/web/app/cad/craft/primitives/planeOpSchema.js
2018-07-02 19:16:43 -07:00

16 lines
No EOL
248 B
JavaScript

export default {
orientation: {
type: 'enum',
values: ['XY', 'XZ', 'ZY'],
defaultValue: 'XY'
},
parallelTo: {
type: 'model',
entity: 'face',
optional: true,
},
depth: {
type: 'number',
defaultValue: 0
}
}