Total members 10261 | Gratitudes |It is currently Tue May 22, 2012 4:57 pm Login / Join Codemiles


All times are UTC [ DST ]




Post new topic Reply to topic  Quick reply  [ 1 post ] 
Author Code Snippet
 Code subject: Ellipse in Rectangle
PostPosted: Tue Nov 11, 2008 8:47 pm 
Offline
Mastermind
User avatar

Joined: Tue Mar 27, 2007 10:55 pm
Posts: 2279
Location: Earth
Has thanked: 39 time
Have thanks: 61 time

drawing Ellipse in Rectangle using java graphics
Code:
import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;
import javax.swing.*;

public class DrawRectangleAndEllipse extends JApplet {
  final static BasicStroke stroke = new BasicStroke(2.0f);
  public void init() {
    setBackground(Color.white);
    setForeground(Color.white);
  }
  public void paint(Graphics g) {
    Graphics2D g2 = (Graphics2D) g;
    g2.setPaint(Color.red);
    int x = 6;
    int y = 8;
    g2.setStroke(stroke);
    g2.draw(new Rectangle2D.Double(x, y, 150, 150));
  g2.draw(new Ellipse2D.Double(x, y, 150, 150));
    }
  public static void main(String args[]) {
    JFrame frame = new JFrame("Draw Ellipse inside Rectangle");
    JApplet applet = new DrawRectangleAndEllipse();
    frame.getContentPane().add("Center", applet);
    applet.init();
    frame.setSize(250, 200);
    frame.show();
  }
}


Attachments:
File comment: drawing Ellipse in Rectangle
rectEll.gif
rectEll.gif [ 4.58 KiB | Viewed 1677 times ]

_________________
Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )
TOP
 Profile Send private message  
Reply with quote  
Post new topic Reply to topic Quick reply  [ 1 post ] 
Quick reply


  

 Similar topics
 Draw rectangle on image
 How to Calculate Volume of a Rectangle
 Java - Rectangle + Graph
 ellipse, circle, rectangle, square, or parallelogram
 Draw Fill Rectangle
 Draw Filled Ellipse in php

All times are UTC [ DST ]


Users browsing similar codes

Users browsing this forum: No registered users and 1 guest



Jump to:  
Previous Code Snippet | Next Code Snippet 




Home
General Talks
Finished Projects
Code Library
Games
Tutorials

Java
C/C++
C-sharp
php
Script
JSP/Servlets
Ajax
ASP/ASP.net
Google SEO
Database
Communications
Phpbb3 styles
Photoshop tutorials
Flash tutorials
Find a job






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team