Anchor

===============================================
  Anchor - class to represent Anchor point
===============================================
Integer values are accepted as coordinates

CONSTRUCTOR

  Anchor()       - generic constructor,
                   creates an Anchor with
                   zero coordinates and empty name
  Anchor(Anchor) - copy constructor
  Anchor(string name, integer x, integer y)
                 - creates an Anchor and
                   assigns name and coordinates.

	

ATTRIBUTES

  parent (read-only) - anchor's parent object, Glyph
  name (string)      - anchor's name as a string
  x (integer)        - horizontal position of the anchor
  y (integer)        - vertical position of the anchor
  p (Point) - position of the anchor as a Point object
  mark (integer)     - behaves like the mark attribute
                       of the Glyph object
                       (not reported by docstring)
	
	

OPERATIONS

  none

	

METHODS

  Transform(Matrix m) - applies Matrix transformation to the Anchor(see
                                 Matrix().__doc__)