TTHPoint

===============================================
  TTHPoint - class to represent visual TrueType points
===============================================
All coordinates in TTHPoint class are set in 10.6 fixed-point format

CONSTRUCTOR

  TTHPoint() - generic constructor, creates a TTHPoint with zero coordinates
  TTHPoint(TTHPoint) - copy constructor
  TTHPoint(Point p) - creates TTHPoint and assigns coordinates from the Point 'p'
  TTHPoint(Point p, integer mode) - creates TTHPoint and assigns mode and coordinates from the Point 'p'
  TTHPoint(TTHPoint p, integer mode) - creates TTHPoint and assigns mode and coordinates from the TTHPoint 'p'
  TTHPoint(integer x, integer y) - creates TTHPoint and assigns coordinates


	

ATTRIBUTES

  x (integer) - x coordinate
  y (integer) - y coordinate
  mode (integer) - point's mode (on-curve or off-curve)
  state(integer) - point's state (touched or not)


	

OPERATIONS

  none
 

	

METHODS

  none