Clean up love’s internal Vector code a bit, and rename it to Vector2 so it’s more obvious what it is.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2017-05-16 22:07:01 -03:00
parent 135d928922
commit ac697ddb0f
25 changed files with 486 additions and 384 deletions
+2 -2
View File
@@ -55,8 +55,8 @@ public:
void reset();
void setTransformation(float x, float y, float a, float sx, float sy, float ox, float oy, float kx, float ky);
love::Vector transformPoint(love::Vector p) const;
love::Vector inverseTransformPoint(love::Vector p);
love::Vector2 transformPoint(love::Vector2 p) const;
love::Vector2 inverseTransformPoint(love::Vector2 p);
const Matrix4 &getMatrix() const;
void setMatrix(const Matrix4 &m);