Answers for "draw circle in java"

1

awt draw circle

public void drawCenteredCircle(Graphics2D g, int x, int y, int r) {
  x = x-(r/2);
  y = y-(r/2);
  g.fillOval(x,y,r,r);
}
Posted by: Guest on October-30-2020
2

java create circle

// x position, y position, x size, y size.
ellipse(0, 0, 100, 100);
Posted by: Guest on December-23-2019
1

how to create a circle in java

public class scratch {
    public static void main(String[] args) {
        JFrame window = new JFrame();
        window.setTitle("Christmas Tree");
        window.setSize(700, 600);
        window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        window.setVisible(true);
        DrawingComponent DC = new DrawingComponent();
        window.add(DC);
    }
}
class DrawingComponent extends JComponent{
      public void paint(Graphics graph0){
        Graphics2D graph = (Graphics2D) graph0;
        Ellipse2D.Double circle = new Ellipse.Double(5, 5, 25, 25);
        graph.fill(circle);
      }
}
Posted by: Guest on January-10-2020
0

draw circle in java

import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;

public class DrawCircle extends Frame 
{
	// input the value for circle and square.
	Shape circle=new Ellipse2D.Float(100.0f,100.0f,100.0f,100.0f);
	
	// class paint to fill color in circle.
	public void paint(Graphics g)
	{
		Graphics2D ga=(Graphics2D)g;
		ga.draw(circle);
		ga.setPaint(Color.blue);
		ga.fill(circle);
	}
		
	public static void main(String args[])
	{
		// create a frame object for circle.
		Frame frame=new DrawCircle();
		frame.addWindowListener(new WindowAdapter()
		{
			public void windowClosing(WindowEvent we)
			{
				System.exit(0);
		    }
		});
		// circle coordinates.
		frame.setSize(300, 250);
		frame.setVisible(true);	
	}
}
Posted by: Guest on December-18-2020
0

how to draw a circle in java swing

g.drawOval(50,50,100,100);
Posted by: Guest on November-02-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language