progress at term deadline

This commit is contained in:
2022-05-13 22:28:41 -05:00
parent fecf12c97a
commit e45e884938
6 changed files with 137 additions and 18 deletions

View File

@@ -1,5 +1,4 @@
#include "mydrawing.h"
//#include <iostream>
using namespace std;
MyDrawing::MyDrawing()
@@ -123,4 +122,5 @@ void setLargePixel(GraphicsContext *gc, int x, int y)
gc->setPixel(x - 1, y);
gc->setPixel(x - 1, y - 1);
gc->setPixel(x, y - 1);
gc->setPixel(x + 1, y - 1);
gc->setPixel(x + 1, y - 1);
}