public void setRight(Parabola p) {
   this.right = p;
   p.setParent(this);
 }
 public void setLeft(Parabola p) {
   this.left = p;
   p.setParent(this);
 }