Acceleration

class Acceleration(val x: Float, val y: Float, val z: Float)

Acceleration is a data class that holds the X, Y, and Z values of a motion event.

These are the raw values of the motion event.

Constructors

Link copied to clipboard
constructor(x: Float, y: Float, z: Float)

Properties

Link copied to clipboard
val x: Float
Link copied to clipboard
val y: Float
Link copied to clipboard
val z: Float