Package Dibujables

Examples of Dibujables.Dibujable.dibujar()


        Dibujable aux;

        for (int i = 0; i < this.figuras.size(); i++) {
            //Dibujamos todos los componentes del lienzo
            aux = (Dibujable) this.figuras.elementAt(i);
            aux.dibujar(g);
        }
    }

    /**
     *
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.