Files
j3ml/include/J3ML/LinearAlgebra/Angle2D.h
2024-01-02 21:31:44 -05:00

14 lines
264 B
C++

#pragma once
#include <J3ML/LinearAlgebra.h>
namespace LinearAlgebra {
class Angle2D {
public:
float x;
float y;
bool operator==(const Angle2D& rhs) const {
return (this->x==rhs.x && this->y==rhs.y);
}
};
}