Ejemplo n.º 1
0
 public Rectangulo(Rectangulo r) {
   this(
       "RECTANGULO",
       r.getCentro().getX(),
       r.getCentro().getY(),
       r.getComprimento(),
       r.getLargura());
 }
Ejemplo n.º 2
0
 public Rectangulo(Rectangulo b) {
   this(b.getCentro(), b.getComprimento(), b.getAltura());
 }