From 1509b9bd0ec971b67277ca64870473e86758e5f7 Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Mon, 8 Jul 2019 19:49:56 +0100 Subject: [PATCH] Use relative path to triangle.h --- include/bounce/cloth/cloth_triangle.h | 3 ++- src/bounce/cloth/garment/garment_mesh.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/include/bounce/cloth/cloth_triangle.h b/include/bounce/cloth/cloth_triangle.h index 4b3f4aa..f4c09a2 100644 --- a/include/bounce/cloth/cloth_triangle.h +++ b/include/bounce/cloth/cloth_triangle.h @@ -20,6 +20,7 @@ #define B3_CLOTH_TRIANGLE_H #include +#include "bounce/cloth/cloth.h" // A cloth triangle class b3ClothTriangle @@ -109,4 +110,4 @@ inline float32 b3ClothTriangle::GetFriction() const return m_friction; } -#endif \ No newline at end of file +#endif diff --git a/src/bounce/cloth/garment/garment_mesh.cpp b/src/bounce/cloth/garment/garment_mesh.cpp index 0fb4433..2c7adb2 100644 --- a/src/bounce/cloth/garment/garment_mesh.cpp +++ b/src/bounce/cloth/garment/garment_mesh.cpp @@ -26,7 +26,7 @@ extern "C" { - #include "triangle/triangle.h" + #include "../../../../external/triangle/triangle.h" } b3GarmentMesh::b3GarmentMesh()