mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 00:45:08 +01:00
14 lines
No EOL
383 B
JavaScript
14 lines
No EOL
383 B
JavaScript
|
|
export default {
|
|
createBox: params => notImplemented,
|
|
createSphere: params => notImplemented,
|
|
createCone: params => notImplemented,
|
|
createCylinder: params => notImplemented,
|
|
createTorus: params => notImplemented,
|
|
boolean: params => notImplemented,
|
|
stepImport: params => notImplemented,
|
|
}
|
|
|
|
function notImplemented() {
|
|
throw "engine doesn't support this operation"
|
|
} |