Canvass.cpp probelm with recording canvas width
Canvas::Canvas(int width, int height){ canvasHeight = width; canvasHeight = height; }
CanvasHeight addressed both width and height. Should it be canvasHeight and canvasWidth.
Canvas::Canvas(int width, int height){ canvasHeight = width; canvasHeight = height; }
CanvasHeight addressed both width and height. Should it be canvasHeight and canvasWidth.