Uses of Class
com.jme.scene.state.StencilState.StencilOperation

Packages that use StencilState.StencilOperation
com.jme.scene.state   
com.jmex.model.collada   
 

Uses of StencilState.StencilOperation in com.jme.scene.state
 

Methods in com.jme.scene.state that return StencilState.StencilOperation
 StencilState.StencilOperation StencilState.getStencilOpFailBack()
           
 StencilState.StencilOperation StencilState.getStencilOpFailFront()
           
 StencilState.StencilOperation StencilState.getStencilOpZFailBack()
           
 StencilState.StencilOperation StencilState.getStencilOpZFailFront()
           
 StencilState.StencilOperation StencilState.getStencilOpZPassBack()
           
 StencilState.StencilOperation StencilState.getStencilOpZPassFront()
           
static StencilState.StencilOperation StencilState.StencilOperation.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StencilState.StencilOperation[] StencilState.StencilOperation.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.jme.scene.state with parameters of type StencilState.StencilOperation
 void StencilState.setStencilOpFail(StencilState.StencilOperation operation)
          Specifies the aciton to take when the stencil test fails for both faces.
 void StencilState.setStencilOpFailBack(StencilState.StencilOperation operation)
          Specifies the aciton to take when the stencil test fails for back faces.
 void StencilState.setStencilOpFailFront(StencilState.StencilOperation operation)
          Specifies the aciton to take when the stencil test fails for front faces.
 void StencilState.setStencilOpZFail(StencilState.StencilOperation operation)
          Specifies stencil action when the stencil test passes, but the depth test fails for both faces.
 void StencilState.setStencilOpZFailBack(StencilState.StencilOperation operation)
          Specifies stencil action when the stencil test passes, but the depth test fails.
 void StencilState.setStencilOpZFailFront(StencilState.StencilOperation operation)
          Specifies stencil action when the stencil test passes, but the depth test fails for front faces.
 void StencilState.setStencilOpZPass(StencilState.StencilOperation operation)
          Specifies stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled.
 void StencilState.setStencilOpZPassBack(StencilState.StencilOperation operation)
          Specifies stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled.
 void StencilState.setStencilOpZPassFront(StencilState.StencilOperation operation)
          Specifies stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled.
 

Uses of StencilState.StencilOperation in com.jmex.model.collada
 

Methods in com.jmex.model.collada that return StencilState.StencilOperation
 StencilState.StencilOperation ColladaImporter.evaluateStencilOp(java.lang.String value)