StencilFunction

StencilFunction()

Determines the function used to compare stencil values for the stencil test.

Members

staticconstantCesium.StencilFunction.ALWAYS : Number

The stencil test always passes.

staticconstantCesium.StencilFunction.EQUAL : Number

The stencil test passes when the masked reference value is equal to the masked stencil value.

staticconstantCesium.StencilFunction.GREATER : Number

The stencil test passes when the masked reference value is greater than the masked stencil value.

staticconstantCesium.StencilFunction.GREATER_OR_EQUAL : Number

The stencil test passes when the masked reference value is greater than or equal to the masked stencil value.

staticconstantCesium.StencilFunction.LESS : Number

The stencil test passes when the masked reference value is less than the masked stencil value.

staticconstantCesium.StencilFunction.LESS_OR_EQUAL : Number

The stencil test passes when the masked reference value is less than or equal to the masked stencil value.

staticconstantCesium.StencilFunction.NEVER : Number

The stencil test never passes.

staticconstantCesium.StencilFunction.NOT_EQUAL : Number

The stencil test passes when the masked reference value is not equal to the masked stencil value.