Question: Given the following code: public void paintComponent ( Graphics g ) { super.paintComponent ( g ) ; Graphics 2 D g 2 = ( Graphics

Given the following code:
public void paintComponent(Graphics g){
super.paintComponent(g);
Graphics2D g2=(Graphics2D)g;
g2.translate( getWidth()/2, getHeight()/2);
g2.rotate(30* Math.PI /180);
g2.fillRect(0,0,200,200);
}
Which of the following describes the output?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!