From a4ad1dfa517cf995f8aa5b913ac9726abca620f7 Mon Sep 17 00:00:00 2001 From: Raul Santos Date: Mon, 1 Aug 2022 20:56:29 +0200 Subject: [PATCH] C#: Remove unused `Transform2D.ScaleBasis` method --- .../mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Transform2D.cs index 7861ece61b1..b8413f1e16b 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]);