From e05f31697539f15be0e2dd778492798cceb1f306 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 21 Feb 2023 07:18:08 +0000 Subject: [PATCH] Fix Vector2Clamp and remove MatrixNormalize (#147) --- Raylib-cs/interop/Raymath.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Raylib-cs/interop/Raymath.cs b/Raylib-cs/interop/Raymath.cs index 1767e3f..eae874f 100644 --- a/Raylib-cs/interop/Raymath.cs +++ b/Raylib-cs/interop/Raymath.cs @@ -143,7 +143,7 @@ namespace Raylib_cs /// Clamp the components of the vector between min and max values specified by the given vectors /// [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector2 Vector2Clamp(Vector2 v); + public static extern Vector2 Vector2Clamp(Vector2 v, Vector2 min, Vector2 max); /// Clamp the magnitude of the vector between two min and max values [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -331,10 +331,6 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 MatrixInvert(Matrix4x4 mat); - /// Normalize provided matrix - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Matrix4x4 MatrixNormalize(Matrix4x4 mat); - /// Get identity matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 MatrixIdentity();