/** 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; }
public AlgoPointOnPath( Construction cons, String label, Path path, double x, double y, NumberValue param) { this(cons, path, x, y, param); P.setLabel(label); }
public AlgoPointOnPath(Construction cons, String label, Path path, double x, double y) { this(cons, path, x, y); P.setLabel(label); }