| 143 | struct StyleStack |
| 144 | { |
| 145 | struct Style |
| 146 | { |
| 147 | Style() |
| 148 | : fill(false) |
| 149 | , color(255, 255, 255) |
| 150 | , lineWidth(1) |
| 151 | {} |
| 152 | bool fill; |
| 153 | ofColor color; |
| 154 | float lineWidth; |
| 155 | }; |
| 156 | |
| 157 | StyleStack() { stack.push_front(Style()); } |
| 158 | void Push() { stack.push_front(GetStyle()); } |