blob: de84fe09f3b5d8b42a064021594a170739c650a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// vector-math.h
#pragma once
// We will use the GLM library for our vector math types, just for simplicity.
#include "glm/glm.hpp"
#include "glm/gtc/constants.hpp"
#include "glm/gtc/matrix_transform.hpp"
#include "glm/gtc/quaternion.hpp"
namespace gfx
{
using namespace glm;
} // namespace gfx
|