jsketcher/web/app/cad/craft/defaultCraftEngine.js
2018-10-30 23:04:10 -07:00

14 lines
No EOL
308 B
JavaScript

export default {
createBox: params => notImplemented,
createSphere: params => notImplemented,
createCone: params => notImplemented,
createCylinder: params => notImplemented,
createTorus: params => notImplemented,
}
function notImplemented() {
throw "engine doesn't support this operation"
}