We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bf29b6 commit 81d915aCopy full SHA for 81d915a
1 file changed
examples/math/randomExample/src/ofApp.h
@@ -18,7 +18,7 @@ class ofApp : public ofBaseApp{
18
auto perform_shuffle() {
19
std::vector<uint8_t> values = { 1, 2, 3, 4, 5, 6, 7, 8 }; // initial order
20
ofShuffle(values);
21
- shuffled_string_ = "shuffled values:";
+ shuffled_string_ = "shuffled values:";
22
for (const auto v: values) {
23
shuffled_string_ += " " + ofToUpper(ofToHex(v));
24
}
0 commit comments