Package com.myscript.iink.graphics
Class InkPoints
java.lang.Object
com.myscript.iink.graphics.InkPoints
Represents ink points.
- Since:
- 3.1
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionInkPoints
(float[] x, float[] y, long[] t, float[] f) Constructs an InkPoints -
Method Summary
-
Field Details
-
x
public float[] xThe points x coordinates. -
y
public float[] yThe points y coordinates. -
t
public long[] tThe points timestamps in ms since Unix EPOCH. -
f
public float[] fThe points normalized pressures.
-
-
Constructor Details
-
InkPoints
public InkPoints(float[] x, float[] y, long[] t, float[] f) Constructs an InkPoints- Parameters:
x
- the x coordinates.y
- the y coordinates.t
- the timestamps in ms since Unix EPOCH, or -1.f
- the normalized pressures.
-