Implementing Vector3 Unit Tests

This commit is contained in:
2024-01-02 21:31:44 -05:00
parent 09922ac0bd
commit 7429f0782f
5 changed files with 123 additions and 46 deletions

View File

@@ -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);
}
};
}