Merged default into minor

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2014-09-20 00:34:34 -03:00
20 changed files with 311 additions and 119 deletions
+5
View File
@@ -37,6 +37,11 @@ Matrix::Matrix()
setIdentity();
}
Matrix::Matrix(float x, float y, float angle, float sx, float sy, float ox, float oy, float kx, float ky)
{
setTransformation(x, y, angle, sx, sy, ox, oy, kx, ky);
}
Matrix::~Matrix()
{
}
+5
View File
@@ -41,6 +41,11 @@ public:
**/
Matrix();
/**
* Creates a new matrix set to a transformation.
**/
Matrix(float x, float y, float angle, float sx, float sy, float ox, float oy, float kx, float ky);
/**
* Destructor.
**/