Box.java 453 Bytes
Newer Older
willgonzz committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import java.util.concurrent.atomic.AtomicLong;

public class Box{
    public float ancho;
    public float alto;
    public float profundidad;
    public void box(){}
    public void box(float ancho,float alto,float profundidad){
        this.ancho=ancho;
        this.alto=alto;
        this.profundidad=profundidad;
    }
    public void box(Box a){
        this.ancho=a.ancho;
        this.alto=a.alto;
        this.profundidad=a.profundidad;
    }
}