Skip to content
Snippets Groups Projects
Transformation.h 197 B
Newer Older
Postea's avatar
Postea committed
#pragma once
#include "Mat4.h"

namespace util {
class Transformation {
Yoel's avatar
Yoel committed
   public:
	Transformation(const Mat4& matrix);
Yoel's avatar
Yoel committed
	const Mat4 toWorld, fromWorld, toWorldN, fromWorldN;
Yoel's avatar
Yoel committed
}  // namespace util