Interface ClippingManager
-
- All Known Implementing Classes:
G2DClippingManager,JoGLClippingManager
public interface ClippingManagerClipping manager interface.- Author:
- Pierre Lando
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddisableClipping()Disable all clipping plane.ClippingPlanegetClippingPlane(int i)Return the i-th clipping plane.intgetClippingPlaneNumber()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.nullis 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.
-
-