Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7839443
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T15:26:48+00:00 2026-06-02T15:26:48+00:00

I need to draw a simple circle by using mouse clicks First click will

  • 0

I need to draw a simple circle by using mouse clicks
First click will be the center
Second will be the radius and the circle would be draw by the 2.

Thanks in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T15:26:50+00:00Added an answer on June 2, 2026 at 3:26 pm

    Good question! The code below is a self contained example (I’m using dragging to define the radius):

    screenshot

    Code that produces screenshot above:

    public static void main(String[] args) throws IOException {
        JFrame frame = new JFrame("Test");
        frame.add(new JComponent() {
            Point p; int r; 
            {
                addMouseListener(new MouseAdapter() {
                    @Override
                    public void mousePressed(MouseEvent e) {
                        p = e.getPoint(); r = 0; repaint();
                    }
                    public void mouseReleased(MouseEvent e) {
                        r = (int) Math.round(e.getPoint().distance(p));
                        repaint();
                    }
                });
                addMouseMotionListener(new MouseMotionAdapter() {
                    public void mouseDragged(MouseEvent e) {
                        r = (int) Math.round(e.getPoint().distance(p));
                        repaint();
                    }
                });
                setPreferredSize(new Dimension(400, 300));
            }
            @Override
            protected void paintComponent(Graphics g) {
                super.paintComponent(g);
                if(p != null) g.drawOval(p.x - r, p.y - r, 2 * r, 2 * r); 
            }
        });
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setVisible(true);
    }
    

    Example using 2 clicks:

    public static void main(String[] args) throws IOException {
        JFrame frame = new JFrame("Test");
        frame.add(new JComponent() {
            Point p1, p2;
            {
                addMouseListener(new MouseAdapter() {
                    @Override
                    public void mouseClicked(MouseEvent e) {
                        if (p1 == null || p2 != null) { 
                            p1 = e.getPoint();
                            p2 = null;
                        } else {
                            p2 = e.getPoint();
                        } 
                        repaint();
                    }
                });
                setPreferredSize(new Dimension(400, 300));
            }
            @Override
            protected void paintComponent(Graphics g) {
                super.paintComponent(g);
                if(p1 != null && p2 != null) {
                    int r = (int) Math.round(p1.distance(p2));
                    g.drawOval(p1.x - r, p1.y - r, 2 * r, 2 * r);
                }
            }
        });
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setVisible(true);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to draw text onto a window HDC along a circular path using
I need to draw a circle onto a bitmap in a specific colour given
I need to draw several simple objects (polygons composed by lines and arcs, eventually
I am building prototype tool to draw simple diagrams. I need to draw an
I need to draw a chart in a JSP. I am using Charts4J to
I just want to draw simple 2D objects like circle, line, square etc in
I'm working newly with a Streamgeometry to draw a simple arrow. Now I need
I need to draw some simple lines within a Border control (or similar) that
Without using any outside APIs, how do I draw a simple green horizontal bar
Hi i need to draw a path simple lines to the canvas it should

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.