Package com.openinventor.ldm
Enum Class SoLDMGlobalResourceParameters.VisualFeedbackParams
java.lang.Object
java.lang.Enum<SoLDMGlobalResourceParameters.VisualFeedbackParams>
com.openinventor.ldm.SoLDMGlobalResourceParameters.VisualFeedbackParams
- All Implemented Interfaces:
IntegerValuedEnum
,Serializable
,Comparable<SoLDMGlobalResourceParameters.VisualFeedbackParams>
,Constable
- Enclosing class:
SoLDMGlobalResourceParameters
public static enum SoLDMGlobalResourceParameters.VisualFeedbackParams
extends Enum<SoLDMGlobalResourceParameters.VisualFeedbackParams>
implements IntegerValuedEnum
Visual feedback modes.
Used with
setVisualFeedbackParam()
method.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUse texturing forSoOrthoSlice
,SoObliqueSlice
, and SoVolumeGeometry primitives.Draw tile outlines for all primitives.Draw the tiles ofSoVolumeRender
orSoVolumeSkin
primitives.Show tiles loaded in main memory.Show tiles loaded (in red) and unloaded (in blue) in texture memory.Show tiles visited by the Tile Visitor.Use fake data instead of the real data during loading into main memory. -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Returns the integer value of the enum constant.valueOf
(int val) Returns the enum constant of this type with the specified integer valueReturns 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
-
DRAW_TILES
Draw the tiles ofSoVolumeRender
orSoVolumeSkin
primitives. They are drawn by default. -
DRAW_SLICES_TEX
Use texturing forSoOrthoSlice
,SoObliqueSlice
, and SoVolumeGeometry primitives. They are used by default. -
DRAW_TOPOLOGY
Show tiles loaded in main memory. This implies showing the multiresolution topology. The tile outlines of tiles of full resolution are drawn with a brighter yellow. The topology is not drawn by default. -
DRAW_TILE_OUTLINE
Draw tile outlines for all primitives. The tile outline of tiles of full resolution are drawn with a brighter gray for the volume, and a brighter green for the slices. Outlines are not drawn by default. -
SHOW_TILES_VALUATED
Show tiles visited by the Tile Visitor. They are not shown by default.For the default LDM implementation, displays an octree representation showing traversal of the octree. Red dots are tiles that have been valuated. Blue indicates the minimum and maximum resolution thresholds. Yellow shows the octree itself.
-
SHOW_LOAD_UNLOAD_TILES
Show tiles loaded (in red) and unloaded (in blue) in texture memory. They are not shown by default. -
USE_FAKE_DATA
Use fake data instead of the real data during loading into main memory. The fake data is programmatically generated and is designed to illustrate features of Large Data Management. Fake data is not used by default.
-
-
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
-
valueOf
Returns the enum constant of this type with the specified integer value- Returns:
- the enum constant of this type with the specified integer value.
-
getValue
public int getValue()Description copied from interface:IntegerValuedEnum
Returns the integer value of the enum constant.- Specified by:
getValue
in interfaceIntegerValuedEnum
- Returns:
- the integer value of the enum constant.
-