Difference between revisions of "Trigonometry Conversion Operators"

From GiderosMobile
(Created page with "__NOTOC__ '''Supported platforms:''' <br/> '''Available since:''' Gideros 2017.10<br/> === Description === <br /> Operators to convert from one type of measurement to another....")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(18 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''Supported platforms:''' <br/>
+
'''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]]<br/>
 
'''Available since:''' Gideros 2017.10<br/>
 
'''Available since:''' Gideros 2017.10<br/>
 +
 
=== Description ===
 
=== Description ===
<br />
+
Operators to convert from one type of measurement to another.
Operators to convert from one type of measurement to another.<br /><br />
+
 
 +
'''^<''' deg &emsp; Convert 'deg' into radians<br/>
 +
'''^>''' rad &emsp; Convert 'rad' into degrees<br/>
 +
 
 +
=== Examples ===
 +
'''Simple degree to radian (^<) examples'''
 +
<syntaxhighlight lang="lua">
 +
r=^<d -- faster than r=math.rad(d)
 +
radAngle=^<sprite:getRotation()
 +
pi=^<180 -- pi is 3.142 in radians or 180 in degrees
 +
</syntaxhighlight>
 +
 
 +
'''Simple radian to degree (^>) examples'''
 +
<syntaxhighlight lang="lua">
 +
d=^>r -- faster than d=math.deg(r)
 +
sprite:setRotation(^>math.sin(0.5))
 +
</syntaxhighlight>
  
<b> ^&lt; </b>deg &emsp; Convert 'deg' into radians.<br />
+
{{GIDEROS IMPORTANT LINKS}}
<b> ^&gt; </b>rad &emsp; Convert 'rad' into degrees.<br />
 
{|-
 
| style="width: 50%;"|
 
=== Methods ===
 
| style="width: 50%;"|
 
=== Events ===
 
=== Constants ===
 
|}
 

Latest revision as of 15:33, 13 July 2023

Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.png
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 degree to radian (^<) examples

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

Simple radian to degree (^>) examples

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