Package java.awt

Examples of java.awt.Graphics2D.fill3DRect()


        g.setColor(Color.black);
        g.fill3DRect(366, 38+a, 152, 292, false);         // Fundo Peças
        g.fill3DRect(366, 37, 152, 48, false);            // Fundo Pontos
        g.fill3DRect(366, 392, 152, 47, false);           // Fundo Trunfos
        g.fill3DRect(366, 447, 152, 47, false);           // Fundo High Score
        g.fill3DRect(366, 688, 152, 31, false);           // Fundo Timer

                                                          /* Texto Legenda */
        g.drawString("Ctrl", 378, 527);
        g.drawString("Pausa", 453, 527);
       
View Full Code Here


        g.draw3DRect(369, 691, 145, 24, false);              // Grade Timer
        g.drawString(timer.contar(jogo1.pausado), 427, 708); // Timer

        /* 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') {
View Full Code Here

        /* 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

        }
        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

        }
        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

        }
        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

        }
        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

        }
        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

        }                                                     // 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

       
        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

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.