Difference between revisions of "Viewport:lookAt"
From GiderosMobile
(One intermediate revision by one other user not shown) | |||
Line 5: | Line 5: | ||
=== Description === | === Description === | ||
Sets up the transform matrix of this viewport taking eye and target positions and up direction as arguments. | Sets up the transform matrix of this viewport taking eye and target positions and up direction as arguments. | ||
− | < | + | <syntaxhighlight lang="lua"> |
Viewport:lookAt(eyex,eyey,eyez,targetx,targety,targetz,upx,upy,upz) | Viewport:lookAt(eyex,eyey,eyez,targetx,targety,targetz,upx,upy,upz) | ||
− | </ | + | </syntaxhighlight> |
=== Parameters === | === Parameters === |
Latest revision as of 16:10, 20 February 2024
Available since: Gideros 2016.10
Class: Viewport
Description
Sets up the transform matrix of this viewport taking eye and target positions and up direction as arguments.
Viewport:lookAt(eyex,eyey,eyez,targetx,targety,targetz,upx,upy,upz)
Parameters
eyex: (number) eye X coordinate
eyey: (number) eye Y coordinate
eyez: (number) eye Z coordinate
targetx: (number) target X coordinate
targety: (number) target Y coordinate
targetz: (number) target Z coordinate
upx: (number) up X coordinate
upy: (number) up Y coordinate
upz: (number) up Z coordinate