Examples of fill3DRect()


Examples of java.awt.Graphics2D.fill3DRect()

        /* Marca Next */
        if(jogo1.formaNext.tipo == 'I') {
            g.fill3DRect(369, 43+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'J') {
            g.fill3DRect(369, 84+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'L') {
            g.fill3DRect(369, 125+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'O') {
View Full Code Here

Examples of java.awt.Graphics2D.fill3DRect()

        }
        if(jogo1.formaNext.tipo == 'J') {
            g.fill3DRect(369, 84+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'L') {
            g.fill3DRect(369, 125+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'O') {
            g.fill3DRect(369, 166+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'S') {
View Full Code Here

Examples of java.awt.Graphics2D.fill3DRect()

        }
        if(jogo1.formaNext.tipo == 'L') {
            g.fill3DRect(369, 125+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'O') {
            g.fill3DRect(369, 166+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'S') {
            g.fill3DRect(369, 207+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'T') {
View Full Code Here

Examples of java.awt.Graphics2D.fill3DRect()

        }
        if(jogo1.formaNext.tipo == 'O') {
            g.fill3DRect(369, 166+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'S') {
            g.fill3DRect(369, 207+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'T') {
            g.fill3DRect(369, 248+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'Z') {
View Full Code Here

Examples of java.awt.Graphics2D.fill3DRect()

        }
        if(jogo1.formaNext.tipo == 'S') {
            g.fill3DRect(369, 207+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'T') {
            g.fill3DRect(369, 248+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'Z') {
            g.fill3DRect(369, 289+a, 146, 38, visual);
        }
       
View Full Code Here

Examples of java.awt.Graphics2D.fill3DRect()

        }
        if(jogo1.formaNext.tipo == 'T') {
            g.fill3DRect(369, 248+a, 146, 38, visual);
        }
        if(jogo1.formaNext.tipo == 'Z') {
            g.fill3DRect(369, 289+a, 146, 38, visual);
        }
       
        g.setColor(Color.GRAY);
        for(int i=0; i<5; i++) {
            g.draw3DRect(370, i*35+507, 142, 31, false);      // Grade Legenda
View Full Code Here

Examples of java.awt.Graphics2D.fill3DRect()

        }                                                     // Pontos
        else {
            g.drawString(Integer.toString(pontuacao.getTotalPontos()), 455, 65);
        }                                                     // Pontos
       
        g.fill3DRect(14, 37, 344, 684, false);                // Borda da Grade
       
        g.drawString(pontuacao.highScore()[1], 452, 482);     // High Score
       
                                                              /* Peças */
        g.setColor(Color.pink);
View Full Code Here

Examples of java.awt.Graphics2D.fill3DRect()

       
        g.drawString(pontuacao.highScore()[1], 452, 482);     // High Score
       
                                                              /* Peças */
        g.setColor(Color.pink);
        g.fill3DRect(385, 56+a, 10, 10, visual);
        g.fill3DRect(395, 56+a, 10, 10, visual);
        g.fill3DRect(405, 56+a, 10, 10, visual);
        g.fill3DRect(415, 56+a, 10, 10, visual);
        g.drawString(Integer.toString(pontuacao.I), 475, 66+a);
        g.drawString("Trunfos", 384, 420);                      // Texto Trunfos
View Full Code Here

Examples of java.awt.Graphics2D.fill3DRect()

        g.drawString(pontuacao.highScore()[1], 452, 482);     // High Score
       
                                                              /* Peças */
        g.setColor(Color.pink);
        g.fill3DRect(385, 56+a, 10, 10, visual);
        g.fill3DRect(395, 56+a, 10, 10, visual);
        g.fill3DRect(405, 56+a, 10, 10, visual);
        g.fill3DRect(415, 56+a, 10, 10, visual);
        g.drawString(Integer.toString(pontuacao.I), 475, 66+a);
        g.drawString("Trunfos", 384, 420);                      // Texto Trunfos
        g.drawString(Integer.toString(jogo1.trunfo), 475, 420); // Trunfos
View Full Code Here

Examples of java.awt.Graphics2D.fill3DRect()

       
                                                              /* Peças */
        g.setColor(Color.pink);
        g.fill3DRect(385, 56+a, 10, 10, visual);
        g.fill3DRect(395, 56+a, 10, 10, visual);
        g.fill3DRect(405, 56+a, 10, 10, visual);
        g.fill3DRect(415, 56+a, 10, 10, visual);
        g.drawString(Integer.toString(pontuacao.I), 475, 66+a);
        g.drawString("Trunfos", 384, 420);                      // Texto Trunfos
        g.drawString(Integer.toString(jogo1.trunfo), 475, 420); // Trunfos
       
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.