mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-20 11:53:49 +01:00
Update return types
This commit is contained in:
parent
39e3f877a9
commit
4c0c3ce64a
1 changed files with 5 additions and 5 deletions
|
@ -40,23 +40,23 @@ Returns the cross product of two vectors.
|
|||
|
||||
Returns the dot product of two vectors.
|
||||
|
||||
`vector.floor(vec: vector)`
|
||||
`vector.floor(vec: vector): vector`
|
||||
|
||||
Equivalent of `math.floor` for vectors.
|
||||
|
||||
`vector.ceil(vec: vector)`
|
||||
`vector.ceil(vec: vector): vector`
|
||||
|
||||
Equivalent of `math.ceil` for vectors.
|
||||
|
||||
`vector.angle(vecA: vector, vecB: vector)`
|
||||
`vector.angle(vecA: vector, vecB: vector): vector`
|
||||
|
||||
Returns the angle between two vectors.
|
||||
|
||||
`vector.max(input: vector, maximum: vector)`
|
||||
`vector.max(input: vector, maximum: vector): vector`
|
||||
|
||||
Equivalent of `math.max` for vectors.
|
||||
|
||||
`vector.min(input: vector, minimum: vector)`
|
||||
`vector.min(input: vector, minimum: vector): vector`
|
||||
|
||||
Equivalent of `math.min` for vectors.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue