Posts
 
Reputation
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
~465 People Reached
Favorite Forums
Favorite Tags
c++ x 5
Member Avatar for hartk1213

hi i am making my own version of tetris and i have most of it working but for some reason they tetrominos are not being drawing correctly. its 9 files of code so its going to be a wall of code here is a screenshot of what it is looking …

0
76
Member Avatar for hartk1213

i need some help with my assignment the link is to the assignment [Click Here](http://www.cwu.edu/~schwing/cs361/CPPprog4.html) Complex.h #include <iostream> using namespace std; class Complex { private: double realPart; double imaginaryPart; public: //Default Constructor Complex(); //Parameterized Constructor Complex(double r, double i); double GetRealPart() const; double GetImaginaryPart() const; void printComplex(); }; test.cpp #include …

Member Avatar for hartk1213
0
389