TestWearableButtonsProvider.TestWearableButtonLocation

class TestWearableButtonsProvider.TestWearableButtonLocation


Class describing the location of a button on a wearable device. This has two forms; it can either store the absolute location of the button, or store both the absolute location of the button, and the absolute location when the screen is rotated through 180 degrees.

Summary

Public constructors

Build a button location, with just the default button location.

TestWearableButtonLocation(
    x: Float,
    y: Float,
    rotatedX: Float,
    rotatedY: Float
)

Build a button location, with both the default button location, and the location when the device is rotated through 180 degrees.

Public functions

PointF

Get the location of this button.

PointF?

Get the location of this button when the device is rotated.

Public constructors

TestWearableButtonLocation

Added in 1.0.0
TestWearableButtonLocation(x: Float, y: Float)

Build a button location, with just the default button location.

Parameters
x: Float

X coordinate of the button.

y: Float

Y coordinate of the button.

TestWearableButtonLocation

Added in 1.0.0
TestWearableButtonLocation(
    x: Float,
    y: Float,
    rotatedX: Float,
    rotatedY: Float
)

Build a button location, with both the default button location, and the location when the device is rotated through 180 degrees.

Parameters
x: Float

X coordinate of the button.

y: Float

Y coordinate of the button.

rotatedX: Float

X coordinate of the button when the device is rotated.

rotatedY: Float

Y coordinate of the button when the device is rotated.

Public functions

getLocation

Added in 1.0.0
fun getLocation(): PointF

Get the location of this button.

Returns
PointF

A point specifying the location of this button.

getRotatedLocation

Added in 1.0.0
fun getRotatedLocation(): PointF?

Get the location of this button when the device is rotated.

Returns
PointF?

A point specifying the location of this button when the device is rotated.