diff options
Diffstat (limited to 'tests/sketch/src/com/android/gesture/GesturePoint.java')
-rw-r--r-- | tests/sketch/src/com/android/gesture/GesturePoint.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/sketch/src/com/android/gesture/GesturePoint.java b/tests/sketch/src/com/android/gesture/GesturePoint.java index d06eff47..81e59a4 100644 --- a/tests/sketch/src/com/android/gesture/GesturePoint.java +++ b/tests/sketch/src/com/android/gesture/GesturePoint.java @@ -21,15 +21,14 @@ package com.android.gesture; */ public class GesturePoint { - public final float xpos; - - public final float ypos; + public final float x; + public final float y; public final long timestamp; public GesturePoint(float x, float y, long t) { - xpos = x; - ypos = y; + this.x = x; + this.y = y; timestamp = t; } } |