Package jcckit.graphic
Interface ClippingShape
-
- All Known Implementing Classes:
ClippingRectangle
public interface ClippingShape
Defining a clipping shape applied to allGraphicalElements
of aGraphicalComposite
.- Author:
- Franz-Josef Elmer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClippingRectangle
getBoundingBox()
Returns the bounding box of this clipping shape.BasicGraphicalElement
getGraphicalElement()
boolean
isInside(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()
-
-