jsketcher/web/app/cad/craft/defaultCraftEngine.js
2018-11-29 17:10:58 -08:00

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"
}