Fixing Math includes
This commit is contained in:
12
MathTestFPU/main.cpp
Normal file
12
MathTestFPU/main.cpp
Normal 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;
|
||||
}
|
@@ -1,7 +0,0 @@
|
||||
//
|
||||
// pch.cpp
|
||||
//
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "pch.h"
|
Reference in New Issue
Block a user