about summary refs log tree commit diff stats
path: root/ext/wittle_generator/Panel.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/wittle_generator/Panel.h')
-rw-r--r--ext/wittle_generator/Panel.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/wittle_generator/Panel.h b/ext/wittle_generator/Panel.h index b8dec2f..95832b5 100644 --- a/ext/wittle_generator/Panel.h +++ b/ext/wittle_generator/Panel.h
@@ -169,6 +169,8 @@ class Panel {
169 int get(int x, int y) { return _grid[x][y]; } 169 int get(int x, int y) { return _grid[x][y]; }
170 void set(int x, int y, int val) { _grid[x][y] = val; } 170 void set(int x, int y, int val) { _grid[x][y] = val; }
171 171
172 void SetInvisibleSymmetry(bool val) { _invisible_symmetry = val; }
173
172 std::string Write(); 174 std::string Write();
173 175
174 enum Style { 176 enum Style {
@@ -447,6 +449,7 @@ class Panel {
447 float minx, miny, maxx, maxy, unitWidth, unitHeight; 449 float minx, miny, maxx, maxy, unitWidth, unitHeight;
448 int _style; 450 int _style;
449 bool _resized; 451 bool _resized;
452 bool _invisible_symmetry = false;
450}; 453};
451 454
452#endif /* end of include guard: PANEL_H_FC471D68 */ 455#endif /* end of include guard: PANEL_H_FC471D68 */