aboutsummaryrefslogtreecommitdiff
path: root/src_js/opcut/states.js
diff options
context:
space:
mode:
Diffstat (limited to 'src_js/opcut/states.js')
-rw-r--r--src_js/opcut/states.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/src_js/opcut/states.js b/src_js/opcut/states.js
deleted file mode 100644
index ffc8666..0000000
--- a/src_js/opcut/states.js
+++ /dev/null
@@ -1,33 +0,0 @@
-import * as grid from 'opcut/grid';
-
-
-export const main = {
- form: {
- method: 'FORWARD_GREEDY',
- cut_width: '0.3',
- panels: grid.state,
- items: grid.state
- },
- result: null,
- selected: {
- panel: null,
- item: null
- },
-};
-
-
-export const panelsItem = {
- name: 'Panel',
- quantity: '1',
- width: '100',
- height: '100'
-};
-
-
-export const itemsItem = {
- name: 'Item',
- quantity: '1',
- width: '10',
- height: '10',
- can_rotate: true
-};