MCPcopy Create free account
hub / github.com/BespokeSynth/BespokeSynth / Style

Class Style

Source/OpenFrameworksPort.cpp:145–155  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

143struct 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()); }

Callers 1

StyleStackMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected