lab5 outlined

This commit is contained in:
2022-04-12 19:07:41 -05:00
parent 4d4f3a5b75
commit 75ac03dd08
8 changed files with 88 additions and 5 deletions

21
Lab5/line.h Normal file
View File

@@ -0,0 +1,21 @@
/**
* @file line.h
* @author your name (you@domain.com)
* @brief
* @version 0.1
* @date 2022-04-12
*
* @copyright Copyright (c) 2022
*
*/
#include "shape.h"
#include "matrix.h"
class Line: public Shape{
public:
private:
}