Results 1 to 4 of 4
Thread: Selecting Shape
- 05-05-2011, 03:37 PM #1
Member
- Join Date
- Mar 2011
- Posts
- 4
- Rep Power
- 0
Selecting Shape
Hi, I am currently working on select and moving shape, There are circle, rectangle and line. I am using same logic for rectangle and circle to select the shape using mouse point. I need help in how to select line shape. thanks.
Java Code:if(XMLReader.name[i] == "circle"){ if((( mousePt.x < nodes.get(i).p.x + width))&& (mousePt.x>nodes.get(i).p.x) ) { if((( mousePt.y < nodes.get(i).p.y + height))&& ( mousePt.y>nodes.get(i).p.y) ){ selectedD =i; return true; } } }
-
You need to tell us specifically what help you need.
Also, don't compare Strings like this:
Java Code:if(XMLReader.name[i] == "circle"){
Instead you'll want to use the equals or equalsIgnoreCase method:
Java Code:if(XMLReader.name[i].equals("circle")){
The problem is the first code compares if one String object is the same as another, and you really don't care if this is true or not. Instead you are interested in knowing if both Strings hold the same characters in the same order which is what the equals/equalsIgnoreCase check.Last edited by Fubarable; 05-05-2011 at 03:48 PM.
-
Also, you never replied to responses to your question in your other thread. Please correct this as doing this will encourage others to help you in the future.
- 05-05-2011, 05:30 PM #4
Member
- Join Date
- Mar 2011
- Posts
- 4
- Rep Power
- 0
Similar Threads
-
Selecting a text
By mathnitin in forum Advanced JavaReplies: 12Last Post: 02-27-2011, 07:04 PM -
Selecting every other array
By Rivy2112 in forum New To JavaReplies: 10Last Post: 10-11-2010, 10:39 PM -
Update GUI when selecting language
By ludberg in forum SWT / JFaceReplies: 0Last Post: 06-04-2010, 05:39 PM -
how to change the shape of the JFrame to a oval shape
By kiki2009 in forum Java 2DReplies: 1Last Post: 04-02-2010, 12:48 PM -
selecting a record in database
By ramachandran in forum New To JavaReplies: 0Last Post: 10-25-2007, 07:06 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks