From fa0d5bbf9e6b37f5436a4f540571ad3347d531ae Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 23 Jan 2020 21:12:50 +0100 Subject: [PATCH] Remove duplicate function --- src/raymath.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/raymath.h b/src/raymath.h index c13ef2344..bc9a05adc 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -371,13 +371,6 @@ RMDEF float Vector3Distance(Vector3 v1, Vector3 v2) return result; } -// Scale provided vector -RMDEF Vector3 Vector3Scale(Vector3 v, float scale) -{ - Vector3 result = { v.x*scale, v.y*scale, v.z*scale }; - return result; -} - // Negate provided vector (invert direction) RMDEF Vector3 Vector3Negate(Vector3 v) {