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

  • SEARCH
  • Home
  • 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 947567
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T23:06:04+00:00 2026-05-15T23:06:04+00:00

I need to make a drawCircle method that looks like public void drawCircle(int x,

  • 0

I need to make a drawCircle method that looks like

public void drawCircle(int x, int y, int radius)

that draws a circle with that center and radius. The drawCircle method needs to call drawOval. I am not sure how I can call drawOval from my drawCircle method without passing Graphics to it. Is this possible?

Heres what I have:

import java.awt.*;   
import javax.swing.*;

class test
{
    public static void main(String[] args)
    {
        JFrame frame = new JFrame("test");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        frame.getContentPane().add(new MyPanel());
        frame.pack();
        frame.setVisible(true);
    }
}
class MyPanel extends JPanel
{

    MyPanel()
    {
        setBackground(Color.WHITE);
        setPreferredSize(new Dimension(250,250));
    }

    public void paintComponent(Graphics page)
    {
        super.paintComponent(page);
        drawCircle(50,50,20);
    }

    private void drawCircle(int x, int y, int radius)
    {
        drawOval(x - radius, y - radius, radius*2, radius*2);
    }
}
  • 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-05-15T23:06:05+00:00Added an answer on May 15, 2026 at 11:06 pm

    You can get the graphics context by calling getGraphics() on a swing component. But i would still create my drawing methods to accept the graphics context.

    For instance

    private void drawCircle(Graphics g, int x, int y, int radius) {
       g.fillOval(x-radius, y-radius, radius*2, radius*2)
    }
    

    Alternatively,

    private void drawCircle(int x, int y, int radius) {
      getGraphics().fillOval(x-radius, y-radius, radius*2, radius*2)
    }
    

    Be aware of the fact that getGraphics() can return null however. You are much better off calling your drawCircle() method from within the paint() method and passing it the Graphics context.

    E.g.

    public void paint(Graphics g) {
      super.paint(g);
      drawCircle(g, 10, 10, 5, 5);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need make layout that must look exactly like below 2 sites. How should
I need to make sure that user can run only one instance of my
I need to make some reflective method calls in Java. Those calls will include
I need make my method capable of accepting JSON data. Say I need to
Need to make a function that would open a popout with a div inheriting
I need to make application that will catch EVERY SINGLE SMS that phone receives,
I need make input field that contain phone numbers. Users can enter 1-10 numbers.
I need to make sure that when someone reloads or closes my page, their
I need to make sure that explorer.exe runs as a system shell. What I
I need to make a list/view (with several columns) like... Name Age Gender ---------------------

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.