Splitting Math into a separate subproject and adding FileIO as a PWE subproject

This commit is contained in:
parax0
2015-12-16 14:39:51 -07:00
parent 610c1c11a5
commit 2db8d23516
89 changed files with 1784 additions and 129 deletions

View File

@@ -4,7 +4,7 @@
#include "SSurface.h"
#include "Core/Resource/CResource.h"
#include "Core/OpenGL/CVertexBuffer.h"
#include <Common/Math/CAABox.h>
#include <Math/CAABox.h>
class CBasicModel : public CResource
{

View File

@@ -1,9 +1,9 @@
#ifndef CVERTEX_H
#define CVERTEX_H
#include <Common/Math/CVector2f.h>
#include <Common/Math/CVector3f.h>
#include <Common/CColor.h>
#include <Math/CVector2f.h>
#include <Math/CVector3f.h>
class CVertex
{

View File

@@ -1,7 +1,7 @@
#include "SSurface.h"
#include "Core/Render/CDrawUtil.h"
#include "Core/CRayCollisionTester.h"
#include <Common/Math/Math.h>
#include <Math/MathUtil.h>
std::pair<bool,float> SSurface::IntersectsRay(const CRay& Ray, bool allowBackfaces, float LineThreshold)
{

View File

@@ -6,10 +6,10 @@
#include "Core/OpenGL/GLCommon.h"
#include "Core/SRayIntersection.h"
#include <Common/types.h>
#include <Common/Math/CAABox.h>
#include <Common/Math/CRay.h>
#include <Common/Math/CTransform4f.h>
#include <Common/Math/CVector3f.h>
#include <Math/CAABox.h>
#include <Math/CRay.h>
#include <Math/CTransform4f.h>
#include <Math/CVector3f.h>
#include <vector>
struct SSurface