瀏覽代碼

Fix Vector3ClampValue and Vector2ClampValue (#2585)

Co-authored-by: Timofffee <timofffee@gmail.com>
pull/2587/head
George Linkovsky 2 年之前
committed by GitHub
父節點
當前提交
b40696eab6
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 4AEE18F83AFDEB23
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/raymath.h

+ 2
- 2
src/raymath.h 查看文件

@ -457,7 +457,7 @@ RMAPI Vector2 Vector2Clamp(Vector2 v, Vector2 min, Vector2 max)
// Clamp the magnitude of the vector between two min and max values
RMAPI Vector2 Vector2ClampValue(Vector2 v, float min, float max)
{
Vector2 result = p">{ 0 };
Vector2 result = n">v;
float length = (v.x*v.x) + (v.y*v.y);
if (length > 0.0f)
@ -951,7 +951,7 @@ RMAPI Vector3 Vector3Clamp(Vector3 v, Vector3 min, Vector3 max)
// Clamp the magnitude of the vector between two values
RMAPI Vector3 Vector3ClampValue(Vector3 v, float min, float max)
{
Vector3 result = p">{ 0 };
Vector3 result = n">v;
float length = (v.x*v.x) + (v.y*v.y) + (v.z*v.z);
if (length > 0.0f)

Loading…
取消
儲存