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 / First Aid / February 2005

Tip: Looking for answers? Try searching our database.

comparing 2 java.awt.geom.area's

Thread view: 
iSyncLtd@hotmail.com - 27 Feb 2005 02:16 GMT
you can compare an Area to a Rectangle using:

Area a;
Rectangle r;

(boolean) a.instrects( r );

but how can a compare two area's two each other that are not exact
rectagles?

(don't say  compare one area to the bounds of another because i need
more accuarcy then that)
Patricia Shanahan - 27 Feb 2005 06:29 GMT
> you can compare an Area to a Rectangle using:
>
[quoted text clipped - 8 lines]
> (don't say  compare one area to the bounds of another because i need
> more accuarcy then that)

Not tested, so use the idea at your own risk:

public static boolean intersects(Area a, Area b){
  Area c = (Area)a.clone();
  c.intersect(b);
  return !c.isEmpty();
}


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.