Class PointFx
public class PointFx
{
// Fields
public float x;
public float y;
// Constructors
public PointFx(float newX, float newY);
public PointFx();
}
This class defines the x and y coordinates of a point on the outline of a TrueType character.
public PointFx(float newX, float newY);
Creates an initialized point object.
Parameter | Description |
newX
| The x coordinate.
|
newY
| The y coordinate.
|
public PointFx();
Creates an uninitialized point object.
- x
- The x coordinate of a point on the outline of a TrueType character.
- y
- The y coordinate of a point on the outline of a TrueType character.