diff options
author | Fox Caminiti <fox@foxcam.net> | 2023-01-20 23:24:37 -0500 |
---|---|---|
committer | Fox Caminiti <fox@foxcam.net> | 2023-01-20 23:24:37 -0500 |
commit | 6298837d4b5fbff561e3d7e6a3361bd64e432960 (patch) | |
tree | 00fac3f57aaaa6bb9476f9ba108a8a13d1a67a46 /src/include/my_math.h | |
parent | 2f164ae23bcd8a857081529189b484a1515f2834 (diff) |
box selection working
Diffstat (limited to 'src/include/my_math.h')
-rw-r--r-- | src/include/my_math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/my_math.h b/src/include/my_math.h index 2a54f4d..938ed3c 100644 --- a/src/include/my_math.h +++ b/src/include/my_math.h @@ -67,7 +67,7 @@ inline v2 V2(ImVec2 A) return(Result); } -inline ImVec2 ImVec2_(v2 f) { +inline ImVec2 IV2(v2 f) { return { f.x, f.y }; } |