Bitwise operations API update.

This commit is contained in:
jussi
2024-05-02 20:57:17 +03:00
parent 4452bccfa6
commit 348fd4f521
2 changed files with 14 additions and 0 deletions

8
API.md
View File

@@ -8301,6 +8301,14 @@ Round float value
--- ---
> result = RL.Sign( float value )
Sign of value
- Success return int
---
> result = RL.Clamp( float value, float min, float max ) > result = RL.Clamp( float value, float min, float max )
Clamp float value Clamp float value

View File

@@ -5389,6 +5389,12 @@ function RL.GetMusicTimePlayed( music ) end
---@return any result ---@return any result
function RL.Round( value ) end function RL.Round( value ) end
---Sign of value
---- Success return int
---@param value number
---@return any result
function RL.Sign( value ) end
---Clamp float value ---Clamp float value
---- Success return float ---- Success return float
---@param value number ---@param value number