14 lines
264 B
C++
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);
|
|
}
|
|
};
|
|
} |