Ejemplo n.º 1
0
 /** Point label with cartesian coordinates (x,y) */
 private final GeoPoint Point(String label, double x, double y) {
   GeoPoint p = new GeoPoint(cons);
   p.setCoords(x, y, 1.0);
   p.setMode(Kernel.COORD_CARTESIAN);
   p.setLabel(label); // invokes add()
   return p;
 }
Ejemplo n.º 2
0
 public AlgoPointOnPath(
     Construction cons, String label, Path path, double x, double y, NumberValue param) {
   this(cons, path, x, y, param);
   P.setLabel(label);
 }
Ejemplo n.º 3
0
  public AlgoPointOnPath(Construction cons, String label, Path path, double x, double y) {

    this(cons, path, x, y);

    P.setLabel(label);
  }