Represents a pointer activity result.

This is an immutable object.

interface Result {
    movement: {
        angle: number;
        length: number;
        x: number;
        y: number;
    };
    track: number;
}

Properties

Properties

movement: {
    angle: number;
    length: number;
    x: number;
    y: number;
}

Indicates the relative distance from the start point of the PointerActivity to the end point of the PointerActivity.

Type declaration

  • angle: number
  • length: number
  • x: number
  • y: number
track: number

Indicates the track length from the start point of the PointerActivity to the end point of the PointerActivity.