Package jcckit.graphic
Interface ClippingShape
-
- All Known Implementing Classes:
ClippingRectangle
public interface ClippingShapeDefining a clipping shape applied to allGraphicalElementsof aGraphicalComposite.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClippingRectanglegetBoundingBox()Returns the bounding box of this clipping shape.BasicGraphicalElementgetGraphicalElement()booleanisInside(GraphPoint point)Returns true if the specified point is inside this clipping shape.
-
-
-
Method Detail
-
isInside
boolean isInside(GraphPoint point)
Returns true if the specified point is inside this clipping shape.
-
getBoundingBox
ClippingRectangle getBoundingBox()
Returns the bounding box of this clipping shape. This method will be used by renderers who supports only rectangular clipping shapes.
-
getGraphicalElement
BasicGraphicalElement getGraphicalElement()
-
-