Enum Class IRenderAreaInteractive.ClippingPlanesAdjustMode
java.lang.Object
java.lang.Enum<IRenderAreaInteractive.ClippingPlanesAdjustMode>
com.openinventor.inventor.viewercomponents.awt.IRenderAreaInteractive.ClippingPlanesAdjustMode
- All Implemented Interfaces:
Serializable
,Comparable<IRenderAreaInteractive.ClippingPlanesAdjustMode>
,Constable
- Enclosing interface:
IRenderAreaInteractive
public static enum IRenderAreaInteractive.ClippingPlanesAdjustMode
extends Enum<IRenderAreaInteractive.ClippingPlanesAdjustMode>
Camera clipping planes adjustment mode.
When adjustment mode is set to
When adjustment mode is set to
When adjustment mode is set to
AUTO
, the camera near and far planes
are dynamically adjusted to be as tight as possible (least amount of stuff
is clipped) before each render traversal.When adjustment mode is set to
MANUAL
, the user is expected to
manually set the camera near and far planes.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
AUTO
-
MANUAL
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-