Move to LinearAlgebra

This commit is contained in:
Pascal Serrarens 2024-03-05 09:13:46 +01:00
parent 81b935694d
commit c90d11ae87
12 changed files with 18 additions and 18 deletions

View File

@ -1,7 +1,7 @@
#pragma once #pragma once
#include "LinearAlgebra/Spherical.h"
#include "Sensor.h" #include "Sensor.h"
#include "VectorAlgebra/Spherical.h"
namespace Passer { namespace Passer {
namespace RoboidControl { namespace RoboidControl {

View File

@ -1,6 +1,6 @@
#include "DifferentialDrive.h" #include "DifferentialDrive.h"
#include "VectorAlgebra/Angle.h" #include "LinearAlgebra/Angle.h"
#include "VectorAlgebra/FloatSingle.h" #include "LinearAlgebra/FloatSingle.h"
#include <math.h> #include <math.h>

View File

@ -1,8 +1,8 @@
#include "Perception.h" #include "Perception.h"
#include "DistanceSensor.h" #include "DistanceSensor.h"
#include "LinearAlgebra/Angle.h"
#include "NetworkSync.h" #include "NetworkSync.h"
#include "Switch.h" #include "Switch.h"
#include "VectorAlgebra/Angle.h"
#include <math.h> #include <math.h>

View File

@ -1,10 +1,10 @@
#pragma once #pragma once
#include "LinearAlgebra/Polar.h"
#include "LinearAlgebra/Quaternion.h"
#include "LinearAlgebra/Spherical.h"
#include "Sensor.h" #include "Sensor.h"
#include "TrackedObject.h" #include "TrackedObject.h"
#include "VectorAlgebra/Polar.h"
#include "VectorAlgebra/Quaternion.h"
#include "VectorAlgebra/Spherical.h"
// #include <vector.h> // #include <vector.h>

View File

@ -1,7 +1,7 @@
#include "Propulsion.h" #include "Propulsion.h"
#include "Roboid.h" #include "Roboid.h"
#include "VectorAlgebra/FloatSingle.h" #include "LinearAlgebra/FloatSingle.h"
Propulsion::Propulsion() { Propulsion::Propulsion() {
this->motors = nullptr; this->motors = nullptr;

View File

@ -1,9 +1,9 @@
#pragma once #pragma once
#include "LinearAlgebra/Polar.h"
#include "LinearAlgebra/Quaternion.h"
#include "LinearAlgebra/Vector2.h"
#include "Motor.h" #include "Motor.h"
#include "VectorAlgebra/Polar.h"
#include "VectorAlgebra/Quaternion.h"
#include "VectorAlgebra/Vector2.h"
namespace Passer { namespace Passer {
namespace RoboidControl { namespace RoboidControl {

View File

@ -1,8 +1,8 @@
#pragma once #pragma once
#include "LinearAlgebra/Vector3.h"
#include "Propulsion.h" #include "Propulsion.h"
#include "Thing.h" #include "Thing.h"
#include "VectorAlgebra/Vector3.h"
namespace Passer { namespace Passer {
namespace RoboidControl { namespace RoboidControl {

View File

@ -1,6 +1,6 @@
#include "ServoMotor.h" #include "ServoMotor.h"
#include "VectorAlgebra/FloatSingle.h" #include "LinearAlgebra/FloatSingle.h"
ServoMotor::ServoMotor() { ServoMotor::ServoMotor() {
this->type = Thing::ServoType; this->type = Thing::ServoType;

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include "VectorAlgebra/Polar.h" #include "LinearAlgebra/Polar.h"
namespace Passer { namespace Passer {
namespace RoboidControl { namespace RoboidControl {

View File

@ -1,8 +1,8 @@
#pragma once #pragma once
#include "LinearAlgebra/Polar.h"
#include "LinearAlgebra/Spherical.h"
#include "Sensor.h" #include "Sensor.h"
#include "VectorAlgebra/Polar.h"
#include "VectorAlgebra/Spherical.h"
namespace Passer { namespace Passer {
namespace RoboidControl { namespace RoboidControl {

View File

@ -1 +1 @@
COMPONENT_ADD_INCLUDEDIRS = ./VectorAlgebra COMPONENT_ADD_INCLUDEDIRS = ./LinearAlgebra

View File

@ -6,7 +6,7 @@
"srcFilter": "+<*> -<test>", "srcFilter": "+<*> -<test>",
"flags": [ "flags": [
"-I .", "-I .",
"-I ./VectorAlgebra" "-I ./LinearAlgebra"
] ]
} }
} }