mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 04:45:06 +01:00
22 lines
No EOL
433 B
JavaScript
22 lines
No EOL
433 B
JavaScript
import {entityKindCapture} from "cad/craft/schema/types/entityType";
|
|
|
|
export default {
|
|
orientation: {
|
|
type: 'string',
|
|
enum: ['XY', 'XZ', 'ZY'],
|
|
defaultValue: 'XY'
|
|
},
|
|
datum: {
|
|
type: 'entity',
|
|
entityCapture: entityKindCapture('face', 'datum'),
|
|
optional: true,
|
|
defaultValue: {
|
|
usePreselection: true,
|
|
preselectionIndex: 0,
|
|
}
|
|
},
|
|
depth: {
|
|
type: 'number',
|
|
defaultValue: 0
|
|
}
|
|
} |