Class FloatPoint
public class FloatPoint
{
  // Fields
  public float x;
  public float y;
  // Constructors
  public FloatPoint(float x, float y);
}
This class defines a point on the screen and is used by FxOutlineFont for glyph outlines. 
public FloatPoint(float x, float y);
Creates a floating point with specified x and y coordinates. 
| Parameter | Description | 
| x | The x coordinate of an (x,y) pair that comprises a point on the screen. | 
| y | The y coordinate of an (x,y) pair that comprises a point on the screen. | 
- x
- An x coordinate. 
- y
- A y coordinate.