Java Graphics Draw drawCheck(Graphics g, int x, int y)

Here you can find the source of drawCheck(Graphics g, int x, int y)

Description

draw Check

License

Open Source License

Declaration

private static void drawCheck(Graphics g, int x, int y) 

Method Source Code

//package com.java2s;
/*//  w w w .j a  v a  2  s  . c om
 * UIUtils.java  2/6/13 1:04 PM
 *
 * Copyright (C) 2012-2013 Nick Ma
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 3
 * of the License, or any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

import java.awt.Graphics;

public class Main {
    private static void drawCheck(Graphics g, int x, int y) {
        g.translate(x, y);
        g.drawLine(3, 5, 3, 5);
        g.fillRect(3, 6, 2, 2);
        g.drawLine(4, 8, 9, 3);
        g.drawLine(5, 8, 9, 4);
        g.drawLine(5, 9, 9, 5);
        g.translate(-x, -y);
    }
}

Related

  1. drawBoxOrBlockChar(Graphics g, int x, int y, int bi, char c, int charWidth, int charHeight)
  2. drawBubbleHead(Graphics2D g, Point2D headPosition, double orientation, double size, Color color, Stroke stroke)
  3. drawBubbles(Graphics g, int nCode)
  4. drawChar(char c, int x, int y, Graphics g)
  5. drawChars(JComponent c, Graphics g, char[] data, int offset, int length, int x, int y)
  6. drawCheckerPattern(Graphics g_, int checkerSize)
  7. drawColors(Color[] colors, Graphics g, int x1, int y1, int x2, int y2, int direction)
  8. drawCoordinateAxes(Graphics2D g, Component comp)
  9. drawCross(Graphics2D g2d, int x, int y, int size)