From c66a3215e147fb7f4469ea00fd85cf7fa8711cd3 Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Wed, 3 Jan 2024 11:16:12 +0100 Subject: [PATCH] Arduino IDE compatiblity --- Placement.h | 4 ++-- Propulsion.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Placement.h b/Placement.h index fd94ec8..8e53071 100644 --- a/Placement.h +++ b/Placement.h @@ -1,8 +1,8 @@ #pragma once #include "Thing.h" -#include "Vector2.h" -#include "Vector3.h" +#include "VectorAlgebra/include/Vector2.h" +#include "VectorAlgebra/include/Vector3.h" namespace Passer { namespace RoboidControl { diff --git a/Propulsion.h b/Propulsion.h index 588e42b..ea412fa 100644 --- a/Propulsion.h +++ b/Propulsion.h @@ -2,9 +2,9 @@ #include "Motor.h" #include "Placement.h" -#include "Polar.h" -#include "Quaternion.h" -#include "Vector2.h" +#include "VectorAlgebra/include/Polar.h" +#include "VectorAlgebra/include/Quaternion.h" +#include "VectorAlgebra/include/Vector2.h" namespace Passer { namespace RoboidControl {