mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-05-04 10:43:48 +01:00
Update docs/vector-library.md
Co-authored-by: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com>
This commit is contained in:
parent
1efe223727
commit
4413d993e3
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ Applies `math.sign` component-wise for each vector. Equivalent of: `vector.creat
|
||||||
|
|
||||||
`vector.clamp(vec: vector, min: vector, max: vector): vector`
|
`vector.clamp(vec: vector, min: vector, max: vector): vector`
|
||||||
|
|
||||||
Applies `math.clamp` component-wise for each vector. Equivalent of: `vector(math.clamp(vec.x, min.x, max.x), etc)`.
|
Applies `math.clamp` component-wise for each vector. Equivalent of: `vector.create(math.clamp(vec.x, min.x, max.x), etc)`.
|
||||||
|
|
||||||
`vector.max(...: vector): vector`
|
`vector.max(...: vector): vector`
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue