Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / February 2006

Tip: Looking for answers? Try searching our database.

Simple problem need help

Thread view: 
Ben - 10 Feb 2006 11:25 GMT
Hi, can anyone help me with this problem.  I know it is really easy,
but I can't findout how to do it.  I have code similar to the layout
below.  Currently it draws a circle with a black border.  How do I set
the fill colour and keep the black border?

Graphics g2 = (Graphics2D)g;

// Create a circle
Shape shape1 = new Ellipse2D.Double (40.0, 60.0, 70.0, 70.);

// Draw circle
g2.draw (shape1);

Thanks in advance.

Ben.
Paulus de Boska - 10 Feb 2006 12:25 GMT
        Graphics2D g2 = (Graphics2D)g;
        Shape shape1 = new Ellipse2D.Double (40.0, 60.0, 70.0, 70.);
        g2.setColor(Color.yellow);
        g2.fill(shape1);
        g2.setColor(Color.red);
        g2.draw (shape1);

---
Paul Hamaker, SEMM
http://javalessons.com


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.