1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-05 15:56:00 +02:00
This commit is contained in:
Brian Fiete 2024-03-02 06:05:08 -05:00
parent 43e718b24e
commit 3269743c29

View file

@ -189,6 +189,8 @@ namespace Beefy.gfx
public DisposeProxy PushTranslate(Vector2 vec) => PushTranslate(vec.mX, vec.mY);
public DisposeProxy PushScale(float scale) => PushScale(scale, scale);
public DisposeProxy PushScale(float scaleX, float scaleY)
{
Matrix m = Matrix.IdentityMatrix;