mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 17:04:58 +01:00
25 lines
No EOL
404 B
JavaScript
25 lines
No EOL
404 B
JavaScript
import booleanOptionSchema from '../booleanOptionSchema';
|
|
|
|
export default {
|
|
datum: {
|
|
type: 'datum',
|
|
optional: true,
|
|
initializeBySelection: 0
|
|
},
|
|
radius: {
|
|
type: 'number',
|
|
defaultValue: 100,
|
|
min: 0
|
|
},
|
|
frustum: {
|
|
type: 'number',
|
|
defaultValue: 0,
|
|
min: 0
|
|
},
|
|
height: {
|
|
type: 'number',
|
|
defaultValue: 250,
|
|
min: 0
|
|
},
|
|
boolean: booleanOptionSchema
|
|
} |