Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions classes/vector.lua
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ function vector.multiply(v, s) end
---@nodiscard
function vector.divide(v, s) end

---Applies the rotation `r` (in radians) to `v` and returns the result.
---Applies the rotation vector `r` {x = pitch, y = yaw, z = roll} (in radians) to `v`, and returns the result.
---@param v Vector
---@param r number
---@param r Vector
---@return Vector
---@nodiscard
function vector.rotate(v, r) end
Expand Down