| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- return {
- summary = 'Get the angle to another vector.',
- description = 'Returns the angle between vectors.',
- arguments = {
- u = {
- type = 'Vec3',
- description = 'The other vector.'
- },
- x = {
- type = 'number',
- description = 'The x component of the other vector.'
- },
- y = {
- type = 'number',
- description = 'The y component of the other vector.'
- },
- z = {
- type = 'number',
- description = 'The z component of the other vector.'
- }
- },
- returns = {
- angle = {
- type = 'number',
- description = 'The angle to the other vector, in radians.'
- },
- },
- variants = {
- {
- arguments = { 'u' },
- returns = { 'angle' }
- },
- {
- arguments = { 'x', 'y', 'z' },
- returns = { 'angle' }
- }
- },
- notes = [[
- If any of the two vectors have a length of zero, the angle between them is not well defined. In
- this case the function returns `math.pi / 2`.
- ]],
- related = {
- 'Vec3:distance',
- 'Vec3:length'
- }
- }
|