Hi everyone,
How to select already drawn single or multiple shapes . I want to select shapes when i draw rectangle around it and when i click on blank area it deletects it. I need selection for copy, pase, move and delete operation.
I don't know where to start to achieve this functionality.
I had used following function but it only checks if point is in the ellispe.
public boolean isInsideEllipse(Point point) {
return new Ellipse2D.Float(xbegin, ybegin, width, height).contains(point);
}
Pleaes guide me, how to perform these operations. Thanks !