Difference between revisions of "Application:getLogicalBounds"

From GiderosMobile
m
 
(14 intermediate revisions by 3 users not shown)
Line 1: Line 1:
__NOTOC__
 
 
'''Available since:''' Gideros 2017.11.3<br/>
 
'''Available since:''' Gideros 2017.11.3<br/>
 +
'''Class:''' [[Application]]<br/>
 +
 
=== Description ===
 
=== Description ===
<br />
+
Returns the minimum and maximum logical space coordinates to cover full screen.
Returns the minimum and maximum logical space coordinates to cover full screen.<br />
+
<syntaxhighlight lang="lua">
<br />
+
minX, minY, maxX, maxY = application:getLogicalBounds()
<source lang="lua">
+
</syntaxhighlight>
(number), (number), (number), (number) = Application:getLogicalBounds()
+
 
</source>
 
 
=== Return values ===
 
=== Return values ===
'''Returns''' (number) Minimum x<br/>
+
'''Returns''' (number) minimum x<br/>
'''Returns''' (number) Minimum y<br/>
+
'''Returns''' (number) minimum y<br/>
'''Returns''' (number) Maximum x<br/>
+
'''Returns''' (number) maximum x<br/>
'''Returns''' (number) Maximum y<br/>
+
'''Returns''' (number) maximum y<br/>
 +
 
 +
=== Example ===
 +
<syntaxhighlight lang="lua">
 +
-- some global variables
 +
-- the actual user's screen size!
 +
screenwidth, screenheight = application:get("screenSize")
 +
-- app size
 +
myappleft, myapptop, myappright, myappbot = application:getLogicalBounds()
 +
myappwidth, myappheight = myappright - myappleft, myappbot - myapptop
 +
--print("app left", myappleft, "app top", myapptop, "app right", myappright, "app bot", myappbot)
 +
--print("app width", myappwidth, "app height", myappheight)
 +
</syntaxhighlight>
 +
 
 +
{{Application}}

Latest revision as of 23:20, 16 October 2024

Available since: Gideros 2017.11.3
Class: Application

Description

Returns the minimum and maximum logical space coordinates to cover full screen.

minX, minY, maxX, maxY = application:getLogicalBounds()

Return values

Returns (number) minimum x
Returns (number) minimum y
Returns (number) maximum x
Returns (number) maximum y

Example

-- some global variables
-- the actual user's screen size!
screenwidth, screenheight = application:get("screenSize")
-- app size
myappleft, myapptop, myappright, myappbot = application:getLogicalBounds()
myappwidth, myappheight = myappright - myappleft, myappbot - myapptop
--print("app left", myappleft, "app top", myapptop, "app right", myappright, "app bot", myappbot)
--print("app width", myappwidth, "app height", myappheight)