Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.58K
1 Posted Topic
Re: my first post here: #include <cmath> #include <iostream> #include <functional> using namespace std; struct coord { int x, y; }; struct pixel { char c; }; ostream& operator<<(ostream& s, pixel p) { return s << p.c << p.c; } void canvas(ostream &s, function<pixel(coord)> F, coord size, coord center) { for … |
The End.