Difference between revisions of "Trigonometry Conversion Operators"
From GiderosMobile
| (13 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
| − | '''Supported platforms:''' android | + | '''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform linux.png]]<br/> |
'''Available since:''' Gideros 2017.10<br/> | '''Available since:''' Gideros 2017.10<br/> | ||
| + | |||
=== Description === | === Description === | ||
| − | + | Operators to convert from one type of measurement to another. | |
| − | Operators to convert from one type of measurement to another.<br /><br /> | + | |
| + | '''^<''' deg   Convert 'deg' into radians<br/> | ||
| + | '''^>''' rad   Convert 'rad' into degrees<br/> | ||
| − | |||
| − | |||
=== Examples === | === Examples === | ||
| − | '''Simple ^< examples''' | + | '''Simple degree to radian (^<) examples''' |
| − | < | + | <syntaxhighlight lang="lua"> |
| − | r=^ | + | r=^<d -- faster than r=math.rad(d) |
| − | radAngle=^ | + | radAngle=^<sprite:getRotation() |
| − | pi=^ | + | pi=^<180 -- pi is 3.142 in radians or 180 in degrees |
| − | '''Simple ^> examples''' | + | </syntaxhighlight> |
| − | < | + | |
| − | d=^ | + | '''Simple radian to degree (^>) examples''' |
| − | sprite:setRotation(^ | + | <syntaxhighlight lang="lua"> |
| − | { | + | d=^>r -- faster than d=math.deg(r) |
| − | + | sprite:setRotation(^>math.sin(0.5)) | |
| − | + | </syntaxhighlight> | |
| − | + | ||
| − | + | {{GIDEROS IMPORTANT LINKS}} | |
| − | |||
| − | |||
Latest revision as of 23:49, 13 January 2025
Supported platforms: ![]()
![]()
![]()
![]()
![]()
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))