| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- return {
- summary = 'Create a model transform that targets from a position to target position.',
- description = [[
- Sets a model transform matrix that moves to `from` and orients model towards `to` point.
- This is used when rendered model should always point towards a point of interest. The
- resulting Mat4 object can be used as model pose.
- The target() function produces same result as lookAt() after matrix inversion.
- ]],
- arguments = {
- from = {
- type = 'Vec3',
- description = 'The position of the viewer.'
- },
- to = {
- type = 'Vec3',
- description = 'The position of the target.'
- },
- up = {
- type = 'Vec3',
- default = 'Vec3(0, 1, 0)',
- description = 'The up vector of the viewer.'
- }
- },
- returns = {
- self = {
- type = 'Mat4',
- description = 'The modified matrix.'
- }
- },
- variants = {
- {
- arguments = { 'from', 'to', 'up' },
- returns = { 'self' }
- }
- },
- related = {
- 'Mat4:lookAt',
- 'Quat:direction'
- }
- }
|