fixup LS scaling impl

This commit is contained in:
vaxerski
2023-01-29 15:58:36 +00:00
parent 3d83a0bc5f
commit ef12120270
3 changed files with 19 additions and 8 deletions

View File

@@ -39,6 +39,10 @@ class Vector2D {
return Vector2D(this->x * a.x, this->y * a.y);
}
Vector2D operator/(const Vector2D& a) const {
return Vector2D(this->x / a.x, this->y / a.y);
}
Vector2D clamp(const Vector2D& min, const Vector2D& max = Vector2D());
Vector2D floor();