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