CPoint:Get
The Get method returns the x and y properties of the CPoint object.
x, y = CPoint:Get() |
On success, this method returns 2 numbers. On failure, 0,0. is returned.
Example 1: The following script retrieves the x and y values of the CPoint and prints the values.
|
-- create a CPoint object |
|
-- return the CPoint values |
|
-- result: 100 200 |
Example 2: The example below shows a more compact coding that gives the same result. Here we pass only Get to print both returned values. This works because multiple return values can be passed into another function only for the last parameter in the call list. For all but the last passed argument, only the first returned value is used by Lua. If there were another argument in the Printf following Get, this shortcut would not work.
|
-- create a CPoint object |
|
-- result: 100 200 |