From 5f034a99b27aebd0db0968e45fbed5b13c2c7d13 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sun, 3 May 2020 15:41:48 +0100 Subject: [PATCH] Updated Raymath.cs. - Added missing function Vector2Rotate. - Removed Vector3Scale and renamed Vector3Multiply to Vector3Scale. --- Raylib-cs/Raymath.cs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Raylib-cs/Raymath.cs b/Raylib-cs/Raymath.cs index 02a91a3..c09b641 100644 --- a/Raylib-cs/Raymath.cs +++ b/Raylib-cs/Raymath.cs @@ -99,6 +99,10 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2Lerp(Vector2 v1, Vector2 v2, float amount); + // Calculate linear interpolation between two vectors + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Vector2 Vector2Rotate(Vector2 v, float degs); + // Vector with components value 0.0f [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Zero(); @@ -117,11 +121,11 @@ namespace Raylib_cs // Multiply vector by scalar [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector3 Vector3Multiply(Vector3 v, float scalar); + public static extern Vector3 Vector3Scale(Vector3 v, float scalar); // Multiply vector by vector [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector3 Vector3MultiplyV(Vector3 v1, Vector3 v2); + public static extern Vector3 Vector3Multiply(Vector3 v1, Vector3 v2); // Calculate two vectors cross product [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -144,11 +148,6 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float Vector3Distance(Vector3 v1, Vector3 v2); - // Scale provided vector - - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector3 Vector3Scale(Vector3 v, float scale); - // Negate provided vector (invert direction) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Negate(Vector3 v);