removed 1 com

This commit is contained in:
HENRY Benjamin
2021-06-07 16:41:47 +02:00
parent a00b14c769
commit e59cc52f6e
-1
View File
@@ -125,7 +125,6 @@ namespace BBM
float dot = this->x * o.x + this->y * o.y;
float det = this->x * o.y - this->y * o.x;
return (std::atan2(det, dot) * (180.0f / M_PI));
//return (std::atan(std::abs(o.y - this->y) / std::abs(o.x - this->x)));
}
double magnitude() const