mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-09 09:52:34 +01:00
22 lines
No EOL
297 B
JavaScript
22 lines
No EOL
297 B
JavaScript
export default {
|
|
datum: {
|
|
type: 'datum',
|
|
initializeBySelection: 0
|
|
},
|
|
x: {
|
|
type: 'number',
|
|
defaultValue: 0
|
|
},
|
|
y: {
|
|
type: 'number',
|
|
defaultValue: 0
|
|
},
|
|
z: {
|
|
type: 'number',
|
|
defaultValue: 0
|
|
},
|
|
copy: {
|
|
type: 'boolean',
|
|
defaultValue: false
|
|
}
|
|
} |