public class SOPoint
extends android.graphics.PointF
Modifier and Type | Field and Description |
---|---|
static int |
LineTo |
static int |
MoveTo |
int |
type |
Constructor and Description |
---|
SOPoint(float x,
float y,
int pointType)
Allocate an SOPoint at the specified location
|
SOPoint(int x,
int y,
int pointType)
Allocate an SOPoint at the specified location
|
SOPoint(android.graphics.PointF position,
int pointType)
Allocate an SOPoint for the specified location
|
public static final int MoveTo
public static final int LineTo
public int type
public SOPoint(int x, int y, int pointType)
x
- horizontal position.y
- vertical position.pointType
- type of point (SOPointType_xxx)public SOPoint(float x, float y, int pointType)
x
- horizontal position (float).y
- vertical position (float).pointType
- type of point (SOPointType_xxx)public SOPoint(android.graphics.PointF position, int pointType)
position
- x,y position.pointType
- type of point (SOPointType_xxx)