@Override public boolean Hit(Point p) { if (shape.getBounds2D().contains(p.x, p.y)) { if (shape.contains(p.x, p.y)) { return true; } } return false; }
/** * Returns the element's bounds * * @return */ public Rectangle2DExt getBounds() { return new Rectangle2DExt(shape.getBounds2D()); }