/** remove the start point of the wrapped GeoText */
 public static void removeTextOrigin(GeoText geo) {
   geo.removeStartPoint(geo.getStartPoint());
 }
 /** @return the origin point of the wrapped GeoText */
 public static GeoPointND getTextOrigin(GeoText geo) {
   return geo.getStartPoint();
 }