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