From 86e31e76ebfb5b55fc85c9f4a9f40f3177b0acd4 Mon Sep 17 00:00:00 2001 From: NADAL Jean-Baptiste Date: Tue, 27 Feb 2024 21:44:13 +0100 Subject: [PATCH] [FIX] Fix compilations errors --- tests/01_tuples.cpp | 2 +- tests/02_1_colors.cpp | 2 +- tests/02_2_canvas.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/01_tuples.cpp b/tests/01_tuples.cpp index 018dd0c..435f6c9 100644 --- a/tests/01_tuples.cpp +++ b/tests/01_tuples.cpp @@ -29,7 +29,7 @@ #include -#include "tuple.h" +#include "core/tuple.h" using namespace Raytracer; diff --git a/tests/02_1_colors.cpp b/tests/02_1_colors.cpp index ac8d900..25a2242 100644 --- a/tests/02_1_colors.cpp +++ b/tests/02_1_colors.cpp @@ -27,7 +27,7 @@ #include -#include "color.h" +#include "core/color.h" using namespace Raytracer; diff --git a/tests/02_2_canvas.cpp b/tests/02_2_canvas.cpp index 0529091..1ab246a 100644 --- a/tests/02_2_canvas.cpp +++ b/tests/02_2_canvas.cpp @@ -27,7 +27,7 @@ #include -#include "canvas.h" +#include "renderer/canvas.h" using namespace Raytracer;