Implementing Vector3 Unit Tests
This commit is contained in:
@@ -5,6 +5,10 @@
|
||||
namespace LinearAlgebra {
|
||||
class Angle2D {
|
||||
public:
|
||||
|
||||
float x;
|
||||
float y;
|
||||
bool operator==(const Angle2D& rhs) const {
|
||||
return (this->x==rhs.x && this->y==rhs.y);
|
||||
}
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user