Results 1 to 2 of 2
- 03-11-2012, 07:48 AM #1
Member
- Join Date
- Mar 2012
- Posts
- 1
- Rep Power
- 0
java help: mouse insensitive to the hole
hi guys..im having a problem with this code. The following codes produces a circle with a hole in the middle. i have to code it in such a way that the mouse should be insensitive with the hole. i.e. when i drag the circle holding on the hole, it should b dragged. i have done this with a square it works perfectly but not this circle. guys help please my due date is tmrw morning. thank you so much in advance.
Java Code:import java.awt.*; import java.awt.geom.*; public class CircleWithHole extends Circle { int holeSize ; public CircleWithHole(int left, int top, int size, int holeSize) { super(left,top,size) ; this.holeSize = holeSize ; } public void draw(Graphics2D g) { Area circle = new Area(new Ellipse2D.Double(left,top,size,size)) ; int gap = (size-holeSize)/2 ; Area hole = new Area(new Ellipse2D.Double(left+gap, top+gap, holeSize,holeSize)) ; circle.subtract(hole) ; g.setPaint(paint); g.fill(circle) ; g.setPaint(Color.black) ; g.draw(circle) ; } public boolean touch(int x, int y) { double a = x - (left + 0.5 + size) ; double b = y - (top + 0.5 + size) ; double c = Math.hypot(a,b) ; // To ensure figure does not jump to cursor position from initial position dx = x - left ; dy = y - top ; return c<= 0.5 + size ; } }Last edited by Norm; 03-11-2012 at 08:10 PM. Reason: added code tags
- 03-11-2012, 08:09 PM #2
Similar Threads
-
Making string insensitive to upper or lower case
By ahmedaa16 in forum New To JavaReplies: 0Last Post: 10-21-2011, 12:59 PM -
Security hole by Race condition
By simorgh in forum Threads and SynchronizationReplies: 0Last Post: 03-24-2010, 04:10 AM -
Mouse Listener for mouse floating over object?
By Krooger in forum AWT / SwingReplies: 1Last Post: 11-18-2009, 04:34 AM -
[SOLVED] Making Switch Case Insensitive?
By iPetey in forum New To JavaReplies: 6Last Post: 04-09-2009, 04:46 PM -
How can we write case insensitive queries for Xpath xml parsing
By vijayvcs in forum XMLReplies: 3Last Post: 09-11-2008, 03:00 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks