1
0
Fork 0
2018-soft-3d-renderer/Source/Transform.hpp

13 lines
313 B
C++
Raw Permalink Normal View History

2019-08-10 00:03:10 +00:00
#pragma once
#include "Camera.hpp"
#include "Matrix.hpp"
Matrix Transform_Translate(Point& translation);
Matrix Transform_Rotate(Point& rotation);
Matrix Transform_Scale(float scale);
Matrix Transform_View(Camera& camera);
Matrix Transform_Perspective(Camera& camera);
Matrix Transform_Screen(Camera& camera);