Dependency Reconfiguration to support MSVC being picky :/
Some checks failed
Run tests / Explore-Gitea-Actions (push) Failing after 1m10s
Build Docs With Doxygen / Explore-Gitea-Actions (push) Successful in 35s

This commit is contained in:
2024-06-16 23:02:32 -07:00
parent 2573757017
commit a5c96e8cae
13 changed files with 188 additions and 156 deletions

View File

@@ -1,7 +1,9 @@
#pragma once
#include <cstddef>
#include <cmath>
#include <J3ML/LinearAlgebra/Vector3.h>
#include <J3ML/LinearAlgebra/Common.h>
namespace J3ML::LinearAlgebra {
class Vector4 {
@@ -20,10 +22,7 @@ namespace J3ML::LinearAlgebra {
{
return &x;
}
Vector3 XYZ() const
{
return {x, y, z};
}
Vector3 XYZ() const;
float GetX() const { return x; }
float GetY() const { return y; }