charcoal/OpenGLEngine/constants.h
elipzer 5a10a883fb Camera Class
Currently implemented a 2D camera class that creates an
orthographic projection matrix.

TODO is implementing a 3D camera class and test program.
2018-09-08 00:06:10 -04:00

10 lines
260 B
C++

#pragma once
namespace egm
{
// 3.141592653589793238462643383279502884197169399375105820974944...
const double PI = 3.14159265358979323846;
// 6.283185307179586476925286766559005768394338798750211641949889...
const double TAU = 6.28318530717958647693;
}