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 8833223
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T08:43:44+00:00 2026-06-14T08:43:44+00:00

below is the code i currently have for the drawing class, iv been looking

  • 0

below is the code i currently have for the drawing class, iv been looking for documents which teach me how to create 3 shapes on screen.

i have a jframe, with menus to select the shape (seen below) ect.

if (clickedMenu.getText().equals("Square")){                    
value = pane.returnslider();
shape = new ASquare(value);

so my question is: how to i edit the below class to create a 2D square that appears on my Jframe which changes size depending on the slider value?

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package assignment;

import java.awt.Graphics;

/**
 *
 * @author Steven
 */
public class MyDrawing extends javax.swing.JPanel {

/**
 * Creates new form MyDrawing
 */
 @Override public void paintComponent(Graphics g) {
     super.paintComponent(g);    // paints background


  }   
}

some code from my jpanel that would maybe help you in answering my question:

public class MyChangeAction implements ChangeListener {

    //complete code here
    @Override
    public void stateChanged(ChangeEvent ce) {
        double value = slider.getValue();
        String str = Double.toString(value);
        sliderLabel.setText(str);
        DecimalFormat df = new DecimalFormat("0.0");

        boundary_length.setText("" +     df.format(MyFrame.shape.computeBoundaryLength(value)));
        area.setText("" + df.format(MyFrame.shape.computeArea(value)));
    }
} // end class

public double returnslider() {
    return slider.getValue();
}

my square class:

package assignment;

import java.awt.event.ActionListener;

/**
 *
 * @author b00560806
 */
public class ASquare extends MyShape {

double value;

public ASquare(double value) {
    this.value = value;
}


@Override
public double computeBoundaryLength(double Length) 
{
    thelength=(4*Length);
    return thelength;
}

@Override
public double computeArea(double Length) 
{
    thearea=(Length*Length);
    return thearea;
}

}
  • 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-14T08:43:45+00:00Added an answer on June 14, 2026 at 8:43 am

    Try this:

    @Override 
    public void paintComponent(Graphics g) {
        super.paintComponent(g);    // paints background
    
        Graphics2D g2 = (Graphics2D)g;
        g2.setStroke(new Stroke((int)returnslider));
        // rest of drawing.
    }  
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have the code below in my WPF application which does exactly what
Currently I have a borderContainer layout as shown below: My code for this layout
I have a python psp page code is shown below. Currently it only prints
Currently i'm using below code which works well. $(#topperAtBaseLevel:visible, #lowerAtBaseLevel:visible, #midAtBaseLevel).hide(); any optimised code?
I have the below code which goes through and returns disk information. When running
I currently have the below code to fetch data from my Entity framework model.
Below is my code and currently it searches the whole webpage. I'm trying to
Currently my code below works fine but it's a bit of overkill. In my
Currently I am calling a title from the database using the below code it
The code below will validate required fields within currently visible fieldsets, but only if

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.