Start adding grid

This commit is contained in:
James Grogan 2022-11-17 17:33:48 +00:00
parent 9301769d58
commit f04d86e0ad
37 changed files with 709 additions and 211 deletions

View file

@ -33,6 +33,12 @@ public:
double getDeltaY(const Point& point) const;
void scale(double x, double y)
{
mX = x*mX;
mY = y*mY;
}
bool operator==(const Point& rhs) const
{
return (mX == rhs.mX)