diff options
author | Ignacio Roldán Etcheverry <neikeq@users.noreply.github.com> | 2019-05-26 01:46:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-26 01:46:07 +0200 |
commit | 0d8f1ba6a9182d1f1af39097e2165fc9807377f5 (patch) | |
tree | a6508306085ce3d8894e4fd1f3835d5ca1a9830b /modules/mono/glue/Managed/Files/Transform2D.cs | |
parent | f6be4ebc0d0fe951ffbb6e279f989891a1bd288a (diff) | |
parent | 7b6473fec5224379361cbce0977e548766ddbd0a (diff) |
Merge pull request #29021 from aaronfranke/mono-tuple
[Mono] Misc Basis and AABB improvements
Diffstat (limited to 'modules/mono/glue/Managed/Files/Transform2D.cs')
-rw-r--r-- | modules/mono/glue/Managed/Files/Transform2D.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/mono/glue/Managed/Files/Transform2D.cs b/modules/mono/glue/Managed/Files/Transform2D.cs index f7bb41d523..33ff286769 100644 --- a/modules/mono/glue/Managed/Files/Transform2D.cs +++ b/modules/mono/glue/Managed/Files/Transform2D.cs @@ -298,6 +298,7 @@ namespace Godot origin = originPos; } + // Arguments are named such that xy is equal to calling x.y public Transform2D(real_t xx, real_t xy, real_t yx, real_t yy, real_t ox, real_t oy) { x = new Vector2(xx, xy); |