public Prosta(Punkt a, Punkt b) { start = new Punkt(a); end = new Punkt(b); }
public Punkt(Punkt copy) { x = copy.x; y = copy.y; }