Interface ClippingManager
-
- All Known Implementing Classes:
G2DClippingManager
,JoGLClippingManager
public interface ClippingManager
Clipping manager interface.- Author:
- Pierre Lando
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
disableClipping()
Disable all clipping plane.ClippingPlane
getClippingPlane(int i)
Return the i-th clipping plane.int
getClippingPlaneNumber()
Return the number of available clipping plane.
-
-
-
Method Detail
-
getClippingPlaneNumber
int getClippingPlaneNumber()
Return the number of available clipping plane. At least 6 clipping plane are supported.- Returns:
- the number of available clipping plane.
-
getClippingPlane
ClippingPlane getClippingPlane(int i)
Return the i-th clipping plane.null
is returned if i is not a valid index.- Parameters:
i
- the given index.- Returns:
- the i-th clipping plane.
-
disableClipping
void disableClipping()
Disable all clipping plane.
-
-