Uses of Class
com.jme3.math.Plane.Side

Packages that use Plane.Side
com.jme3.bounding   
com.jme3.math The com.jme3.math package provides mathematic data structures and utilities which are used by the rest of the engine. 
com.jme3.renderer The com.jme3.renderer package provides classes responsible for rendering. 
 

Uses of Plane.Side in com.jme3.bounding
 

Methods in com.jme3.bounding that return Plane.Side
 Plane.Side BoundingBox.whichSide(Plane plane)
          whichSide takes a plane (typically provided by a view frustum) to determine which side this bound is on.
 Plane.Side BoundingSphere.whichSide(Plane plane)
          whichSide takes a plane (typically provided by a view frustum) to determine which side this bound is on.
abstract  Plane.Side BoundingVolume.whichSide(Plane plane)
          whichSide returns the side on which the bounding volume lies on a plane.
 

Uses of Plane.Side in com.jme3.math
 

Methods in com.jme3.math that return Plane.Side
static Plane.Side Plane.Side.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Plane.Side[] Plane.Side.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 Plane.Side Plane.whichSide(Vector3f point)
          whichSide returns the side at which a point lies on the plane.
 

Uses of Plane.Side in com.jme3.renderer
 

Methods in com.jme3.renderer with parameters of type Plane.Side
 void Camera.setClipPlane(Plane clipPlane, Plane.Side side)
          Sets a clipPlane for this camera.