Fixing Math includes

This commit is contained in:
Thorben Höhne
2025-02-19 12:17:08 +01:00
parent d6362a62df
commit 1fbbdf5f0a
57 changed files with 240 additions and 312 deletions

12
MathTestFPU/main.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include <iostream>
#include "Core/Math/Include.h"
int main(int argc, char **argv) {
Phanes::Core::Math::Vector3 v1(1.0f, 2.0f, 3.0f);
Phanes::Core::Math::Vector3 v2(1.0f, 2.0f, 3.0f);
Phanes::Core::Math::Vector3 v3 = v1 + v2;
std::cout << "v3: " << Phanes::Core::Math::ToString(v3) << std::endl;
}

View File

@@ -1,7 +0,0 @@
//
// pch.cpp
//
#pragma once
#include "pch.h"