diff options
author | Raul Santos <raulsntos@gmail.com> | 2022-08-01 20:56:29 +0200 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2022-08-01 20:56:29 +0200 |
commit | a4ad1dfa517cf995f8aa5b913ac9726abca620f7 (patch) | |
tree | ea854943447a429dc17e430a309e531f5e31e416 /modules/mono/glue | |
parent | 19e0e06dd08fd9dd89fb09e0fed1286eaae32945 (diff) |
C#: Remove unused `Transform2D.ScaleBasis` method
Diffstat (limited to 'modules/mono/glue')
-rw-r--r-- | modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs index 7861ece61b..b8413f1e16 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs @@ -320,14 +320,6 @@ namespace Godot return copy; } - private void ScaleBasis(Vector2 scale) - { - x.x *= scale.x; - x.y *= scale.y; - y.x *= scale.x; - y.y *= scale.y; - } - private real_t Tdotx(Vector2 with) { return (this[0, 0] * with[0]) + (this[1, 0] * with[1]); |