Interface ClippingManager
- All Known Implementing Classes:
G2DClippingManager, JoGLClippingManager
public interface ClippingManager
Clipping manager interface.
- Author:
- Pierre Lando
-
Method Summary
Modifier and TypeMethodDescriptionvoidDisable all clipping plane.getClippingPlane(int i) Return the i-th clipping plane.intReturn the number of available clipping plane.
-
Method Details
-
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
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.
-