Difference between revisions of "Sprite:getMatrix"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Returns the transformation matrix of the sprite. Each invocation of this function returns a new...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Class:''' [[Sprite]]<br/>
 +
 
=== Description ===
 
=== Description ===
<br />
+
Returns the transformation matrix of the sprite. Each invocation of this function returns a new [[Matrix]] object.
Returns the transformation matrix of the sprite. Each invocation of this function returns a new `Matrix` object.<br />
+
<syntaxhighlight lang="lua">
<br />
+
(Matrix) = Sprite:getMatrix()
<source lang="lua">
+
</syntaxhighlight>
(Matrix), = Sprite:getMatrix()
+
 
</source>
+
=== Return values ===
'''Returns''' (Matrix) The transformation matrix of the sprite<br/>
+
'''Returns''' (Matrix) the transformation matrix of the sprite<br/>
 +
 
 +
{{Sprite}}

Latest revision as of 15:33, 13 July 2023

Available since: Gideros 2011.6
Class: Sprite

Description

Returns the transformation matrix of the sprite. Each invocation of this function returns a new Matrix object.

(Matrix) = Sprite:getMatrix()

Return values

Returns (Matrix) the transformation matrix of the sprite