Package Dibujables

Examples of Dibujables.Dibujable


    @Override
    public void paint(Graphics g) {
        //Pintamos el panel
        super.paint(g);

        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

Related Classes of Dibujables.Dibujable

Copyright © 2018 www.massapicom. 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.