lab 5 progress
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
/**
|
||||
* @file shape.cpp
|
||||
* @author your name (you@domain.com)
|
||||
* @author Trevor Barnes (barnestr@msoe.edu)
|
||||
* @brief
|
||||
* @version 0.1
|
||||
* @version 1.0
|
||||
* @date 2022-04-12
|
||||
*
|
||||
* @copyright Copyright (c) 2022
|
||||
@@ -11,5 +11,19 @@
|
||||
#include "shape.h"
|
||||
|
||||
Shape::Shape(){
|
||||
this->RGB = (uint32_t) 0x00FFFFFF;
|
||||
}
|
||||
this->color = (uint32_t) 0x00FFFFFF;
|
||||
}
|
||||
Shape::Shape(const Shape& from){
|
||||
this->color = from.color;
|
||||
this->coords = from.coords;
|
||||
}
|
||||
|
||||
Shape::~Shape(){};
|
||||
|
||||
void Shape::draw(GraphicsContext *gc){}
|
||||
|
||||
void Shape::out(std::ostream& os, const Shape& rhs){}
|
||||
|
||||
Shape& Shape::operator=(const Shape& rhs){
|
||||
return *this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user