This commit is contained in:
Phillip Stephens 2015-10-12 01:49:33 -07:00
commit 9ce41a40f8
2 changed files with 6 additions and 1 deletions

View File

@ -4,7 +4,6 @@
#if _M_IX86_FP >= 1 || _M_X64
# define __SSE__ 1
#endif
#include <x86intrin.h>
#if __SSE__
# include <immintrin.h>

View File

@ -1,8 +1,14 @@
#ifndef MATH_HPP
#define MATH_HPP
#ifndef NOMINMAX
#define NOMINMAX 1
#endif
#ifndef _USE_MATH_DEFINES
#define _USE_MATH_DEFINES 1
#include <cmath>
#endif
#include "CVector3f.hpp"
#include "CTransform.hpp"