| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- return {
- tag = 'vectors',
- summary = 'Create a temporary Quat.',
- description = [[
- Creates a temporary quaternion. This function takes the same arguments as `Quat:set`.
- ]],
- arguments = {
- angle = {
- type = 'number',
- default = '0',
- description = 'An angle to use for the rotation, in radians.'
- },
- ax = {
- type = 'number',
- default = '0',
- description = 'The x component of the axis of rotation.'
- },
- ay = {
- type = 'number',
- default = '0',
- description = 'The y component of the axis of rotation.'
- },
- az = {
- type = 'number',
- default = '0',
- description = 'The z component of the axis of rotation.'
- },
- raw = {
- type = 'boolean',
- default = 'false',
- description = 'Whether the components should be interpreted as raw `(x, y, z, w)` components.'
- },
- v = {
- type = 'Vec3',
- description = 'A normalized direction vector.'
- },
- u = {
- type = 'Vec3',
- description = 'Another normalized direction vector.'
- },
- r = {
- type = 'Quat',
- description = 'An existing quaternion to copy the values from.'
- },
- m = {
- type = 'Mat4',
- description = 'A matrix to use the rotation from.'
- }
- },
- returns = {
- q = {
- type = 'Quat',
- description = 'The new quaternion.'
- }
- },
- variants = {
- {
- arguments = { 'angle', 'ax', 'ay', 'az', 'raw' },
- returns = { 'q' }
- },
- {
- arguments = { 'r' },
- returns = { 'q' }
- },
- {
- description = 'Uses the direction of a vector.',
- arguments = { 'v' },
- returns = { 'q' }
- },
- {
- description = 'Sets the rotation to represent the rotation between two vectors.',
- arguments = { 'v', 'u' },
- returns = { 'q' }
- },
- {
- arguments = { 'm' },
- returns = { 'q' }
- },
- {
- description = 'Set the quaternion to the identity (0, 0, 0, 1).',
- arguments = {},
- returns = { 'q' }
- }
- },
- related = {
- 'lovr.math.newQuat',
- 'Quat',
- 'Vectors'
- }
- }
|