Files
j3ml/include/J3ML/LinearAlgebra/Angle2D.h
2024-02-02 13:53:23 -05:00

14 lines
270 B
C++

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