Fixed shearing resetting transformations

This commit is contained in:
Dermoumi Sid
2015-03-29 12:37:18 +01:00
parent a17fed2a1e
commit 6a07823224
+1 -1
View File
@@ -1404,7 +1404,7 @@ void Graphics::translate(float x, float y)
void Graphics::shear(float kx, float ky) void Graphics::shear(float kx, float ky)
{ {
gl.getTransform().setShear(kx, ky); gl.getTransform().shear(kx, ky);
} }
void Graphics::origin() void Graphics::origin()