lab 6 start

This commit is contained in:
2022-05-10 21:20:05 -05:00
parent 1523e62098
commit fecf12c97a
23 changed files with 1784 additions and 0 deletions

19
Lab6/viewcontext.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef viewcontext_h
#define viewcontext_h
#include "matrix.h"
class ViewContext{
ViewContext();
void model_to_device();
// Rotation - Around center of screen
// Scaling - Around center of screen
// Translation
// Reset
// Invert Colors
Matrix* compMatrix;
};
#endif