diff options
| author | Tim Redfern <redfernt@gmail.com> | 2023-09-16 10:43:37 +0100 |
|---|---|---|
| committer | Tim Redfern <redfernt@gmail.com> | 2023-09-16 10:43:37 +0100 |
| commit | fc305dec44a268ebb3d82fa28c8eb0eee05c95d5 (patch) | |
| tree | 5620dcb2e40b6f0d4c6a5b86b72a0b2c3dfee338 /futuregael | |
| parent | 91bc14efd9488f8657a1657c1f40ae9f6c3321e9 (diff) | |
constructing palettes
Diffstat (limited to 'futuregael')
| -rw-r--r-- | futuregael/src/ofApp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/futuregael/src/ofApp.h b/futuregael/src/ofApp.h index b5d0c25..ceb537b 100644 --- a/futuregael/src/ofApp.h +++ b/futuregael/src/ofApp.h @@ -11,7 +11,7 @@ public: text=words; vector<string> colours=ofSplitString(cols,","); for (auto c: colours){ - ofLog()<<"got colour: "<<ofColor::fromHex(ofHexToInt(c)); + palette.push_back(ofColor::fromHex(ofHexToInt(c))); } } vector<ofColor> palette; |
