Difference between revisions of "Trigonometry Conversion Operators"

From GiderosMobile
Line 3: Line 3:
 
'''Available since:''' Gideros 2017.10<br/>
 
'''Available since:''' Gideros 2017.10<br/>
 
=== Description ===
 
=== Description ===
<br />
+
<translate><br />
 
Operators to convert from one type of measurement to another.<br /><br />
 
Operators to convert from one type of measurement to another.<br /><br />
  
 
<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 /></translate>
 
=== Examples ===
 
=== Examples ===
 
'''Simple ^< examples'''<br/>
 
'''Simple ^< examples'''<br/>
<source lang="lua"><br />  
+
<source lang="lua">  
 
r=^&lt;d -- faster than r=math.rad(d)
 
r=^&lt;d -- faster than r=math.rad(d)
 
radAngle=^&lt;sprite:getRotation()
 
radAngle=^&lt;sprite:getRotation()
 
pi=^&lt;180 -- pi is 3.142 in radians or 180 in degrees</source>
 
pi=^&lt;180 -- pi is 3.142 in radians or 180 in degrees</source>
 
'''Simple ^> examples'''<br/>
 
'''Simple ^> examples'''<br/>
<source lang="lua"><br />  
+
<source lang="lua">  
 
d=^&gt;r -- faster than d=math.deg(r)
 
d=^&gt;r -- faster than d=math.deg(r)
 
sprite:setRotation(^&gt;math.sin(0.5))</source>
 
sprite:setRotation(^&gt;math.sin(0.5))</source>

Revision as of 14:33, 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

 
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

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

Methods

Events

Constants