Difference between revisions of "Trigonometry Conversion Operators"

From GiderosMobile
Line 8: Line 8:
 
<b> ^&lt; </b>deg &emsp; Convert 'deg' into radians.<br />
 
<b> ^&lt; </b>deg &emsp; Convert 'deg' into radians.<br />
 
<b> ^&gt; </b>rad &emsp; Convert 'rad' into degrees.<br />
 
<b> ^&gt; </b>rad &emsp; Convert 'rad' into degrees.<br />
 +
=== Examples ===
 +
'''Simple ^< examples'''<br/>
 +
<source lang="lua"><br />
 +
r=^&lt;d -- faster than r=math.rad(d)
 +
radAngle=^&lt;sprite:getRotation()
 +
pi=^&lt;180 -- pi is 3.142 in radians or 180 in degrees</source>
 +
'''Simple ^> examples'''<br/>
 +
<source lang="lua"><br />
 +
d=^&gt;r -- faster than d=math.deg(r)
 +
sprite:setRotation(^&gt;math.sin(0.5))</source>
 
{|-
 
{|-
 
| style="width: 50%;"|
 
| style="width: 50%;"|

Revision as of 11:45, 23 August 2018

Supported platforms: android, ios, mac, pc
Available since: Gideros 2017.10

Description


Operators to convert from one type of measurement to another.

^< deg   Convert 'deg' into radians.
^> rad   Convert 'rad' into degrees.

Examples

Simple ^< examples

<br /> 
r=^&lt;d -- faster than r=math.rad(d)
radAngle=^&lt;sprite:getRotation()
pi=^&lt;180 -- pi is 3.142 in radians or 180 in degrees

Simple ^> examples

<br /> 
d=^&gt;r -- faster than d=math.deg(r)
sprite:setRotation(^&gt;math.sin(0.5))

Methods

Events

Constants