Difference between revisions of "Gyroscope"

From GiderosMobile
 
(22 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''Supported platforms:''' android, ios<br/>
+
<!-- GIDEROSOBJ:Gyroscope -->
 +
'''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform winrt.png]]<br/>
 
'''Available since:''' Gideros 2012.8<br/>
 
'''Available since:''' Gideros 2012.8<br/>
 +
'''Inherits from:''' [[Object]]<br/>
 +
 
=== Description ===
 
=== Description ===
<translate><br />
+
The '''Gyroscope''' class is used to access gyroscope data.
The [[[Gyroscope]]] class is used to access gyroscope data. <br />
+
 
<br /></translate>
+
=== Example ===
=== Examples ===
+
<syntaxhighlight lang="lua">
'''Example'''<br/>
+
local gyroscope = Gyroscope.new()
<source lang="lua">local gyroscope = Gyroscope.new()
 
 
gyroscope:start()
 
gyroscope:start()
  
Line 17: Line 19:
 
local x, y, z = gyroscope:getRotationRate()
 
local x, y, z = gyroscope:getRotationRate()
 
 
angx = angx   x * event.deltaTime
+
angx = angx x * event.deltaTime
angy = angy   y * event.deltaTime
+
angy = angy y * event.deltaTime
angz = angz   z * event.deltaTime
+
angz = angz z * event.deltaTime
 
 
 
print(angx * 180 / math.pi, angy * 180 / math.pi, angz * 180 / math.pi)
 
print(angx * 180 / math.pi, angy * 180 / math.pi, angz * 180 / math.pi)
 
end
 
end
  
stage:addEventListener(&quot;enterFrame&quot;, onEnterFrame)</source>
+
stage:addEventListener("enterFrame",onEnterFrame,self)
 +
</syntaxhighlight>
 +
 
 
{|-
 
{|-
| style="width: 50%;"|
+
| style="width: 50%; vertical-align:top;"|
 
=== Methods ===
 
=== Methods ===
[[Gyroscope.isAvailable]] - Gyroscope - does the gyroscope available?<br/>
+
[[Gyroscope.isAvailable]] ''is the gyroscope available''<br/><!--GIDEROSMTD:Gyroscope.isAvailable() is the gyroscope available-->
[[Gyroscope.new]] - Creates new Gyroscope instance<br/>
+
[[Gyroscope.new]] ''creates a new Gyroscope instance''<br/><!--GIDEROSMTD:Gyroscope.new() creates a new Gyroscope instance-->
[[Gyroscope:getRotationRate]] - Gyroscope - returns the rotation rate in radians per second<br/>
+
 
[[Gyroscope:start]] - Gyroscope - starts gyroscope updates<br/>
+
[[Gyroscope:getRotationRate]] ''returns the rotation rate in radians per second''<br/><!--GIDEROSMTD:Gyroscope:getRotationRate() returns the rotation rate in radians per second-->
[[Gyroscope:stop]] - Gyroscope - stops gyroscope updates<br/>
+
[[Gyroscope:start]] ''starts gyroscope updates''<br/><!--GIDEROSMTD:Gyroscope:start() starts gyroscope updates-->
| style="width: 50%;"|
+
[[Gyroscope:stop]] ''stops gyroscope updates''<br/><!--GIDEROSMTD:Gyroscope:stop() stops gyroscope updates-->
 +
 
 +
| style="width: 50%; vertical-align:top;"|
 
=== Events ===
 
=== Events ===
 
=== Constants ===
 
=== Constants ===
 
|}
 
|}
 +
 +
{{GIDEROS IMPORTANT LINKS}}

Latest revision as of 18:49, 12 January 2025

Supported platforms: Platform android.pngPlatform ios.pngPlatform winrt.png
Available since: Gideros 2012.8
Inherits from: Object

Description

The Gyroscope class is used to access gyroscope data.

Example

local gyroscope = Gyroscope.new()
gyroscope:start()

local angx = 0
local angy = 0
local angz = 0
local function onEnterFrame(event)
	local x, y, z = gyroscope:getRotationRate()
		
	angx = angx +  x * event.deltaTime
	angy = angy +  y * event.deltaTime
	angz = angz +  z * event.deltaTime
		
	print(angx * 180 / math.pi, angy * 180 / math.pi, angz * 180 / math.pi)
end

stage:addEventListener("enterFrame",onEnterFrame,self)

Methods

Gyroscope.isAvailable is the gyroscope available
Gyroscope.new creates a new Gyroscope instance

Gyroscope:getRotationRate returns the rotation rate in radians per second
Gyroscope:start starts gyroscope updates
Gyroscope:stop stops gyroscope updates

Events

Constants