Enum Class Camera.FrustumIntersect

java.lang.Object
java.lang.Enum<Camera.FrustumIntersect>
com.jme3.renderer.Camera.FrustumIntersect
All Implemented Interfaces:
Serializable, Comparable<Camera.FrustumIntersect>, Constable
Enclosing class:
Camera

public static enum Camera.FrustumIntersect extends Enum<Camera.FrustumIntersect>
The result of a culling check operation. see Camera.contains(com.jme3.bounding.BoundingVolume)
  • Enum Constant Details

    • Outside

      public static final Camera.FrustumIntersect Outside
      Defines a constant assigned to spatials that are completely outside of this camera's view frustum.
    • Inside

      public static final Camera.FrustumIntersect Inside
      Defines a constant assigned to spatials that are completely inside the camera's view frustum.
    • Intersects

      public static final Camera.FrustumIntersect Intersects
      Defines a constant assigned to spatials that are intersecting one of the six planes that define the view frustum.
  • Method Details

    • values

      public static Camera.FrustumIntersect[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Camera.FrustumIntersect valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null