Java Swing Tutorial - Java Rectangle.getBounds2D()








Syntax

Rectangle.getBounds2D() has the following syntax.

public Rectangle2D getBounds2D()

Example

In the following code shows how to use Rectangle.getBounds2D() method.

import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
//from w w w.jav  a2 s .c o  m
import javax.swing.JFrame;
import javax.swing.JPanel;

public class Main extends JPanel {

  public void paint(Graphics g) {
    Graphics2D g2 = (Graphics2D) g;
    
    Rectangle r = new Rectangle (100, 100, 200, 200);
    
    g2.fill (r);
    System.out.println (r.getBounds2D());
    
    

  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.getContentPane().add(new Main());

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(200, 200);
    frame.setVisible(true);
  }
}