05_OO: Schneeflocken
This commit is contained in:
parent
5b458386ac
commit
211059683f
|
@ -6,6 +6,7 @@ cmake-build-debug
|
|||
*.save
|
||||
bin/
|
||||
/CMakeFiles
|
||||
src/CMakeFiles
|
||||
CMakeCache.txt
|
||||
cmake_install.cmake
|
||||
Makefile
|
||||
|
|
|
@ -8,7 +8,6 @@ protected:
|
|||
int _radius;
|
||||
public:
|
||||
explicit Circle(int x = 0, int y = 0, int radius = 0, Colors color = Colors::GREEN);
|
||||
|
||||
void draw() override;
|
||||
};
|
||||
|
||||
|
|
|
@ -19,6 +19,10 @@ int main(int argc, char **argv) {
|
|||
|
||||
shapes.push_back(new Rectangle(5, 21, 10, 10, Colors::MAGENTA));
|
||||
|
||||
shapes.push_back(new Point(5, 10, Colors::WHITE));
|
||||
shapes.push_back(new Point(15, 7, Colors::WHITE));
|
||||
shapes.push_back(new Point(7, 5, Colors::WHITE));
|
||||
|
||||
|
||||
auto *s = new Scene(shapes);
|
||||
s->draw();
|
||||
|
|
Loading…
Reference in New Issue