Adds code editing and shape generation

This commit is contained in:
Steve Ruiz 2021-05-15 14:02:13 +01:00
parent afa8f53dff
commit 1a01c47835
34 changed files with 1298 additions and 237 deletions

View file

@ -1,6 +1,7 @@
import translate from "./translate-command"
import transform from "./transform-command"
import translate from "./translate"
import transform from "./transform"
import generateShapes from "./generate-shapes"
const commands = { translate, transform }
const commands = { translate, transform, generateShapes }
export default commands