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