Files
CS3210/Lab6/viewcontext.h
2022-05-10 21:20:05 -05:00

19 lines
336 B
C++

#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