Package com.luciad.view.lightspeed.style
Enum Class TLspPointCloudStyle.ScalingMode
java.lang.Object
java.lang.Enum<TLspPointCloudStyle.ScalingMode>
com.luciad.view.lightspeed.style.TLspPointCloudStyle.ScalingMode
- All Implemented Interfaces:
Serializable
,Comparable<TLspPointCloudStyle.ScalingMode>
,Constable
- Enclosing class:
TLspPointCloudStyle
Describes the methods that are available for determining point sizes. This determines
how the scale expression of the point cloud style is interpreted.
- Since:
- 2018.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe points are given a world size adapted to the local density of the point cloud.The scale expression determines the size of each point in pixels. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TLspPointCloudStyle.ScalingMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PIXEL_SIZE
The scale expression determines the size of each point in pixels. -
ADAPTIVE_WORLD_SIZE
The points are given a world size adapted to the local density of the point cloud. This creates, to the largest extent possible, a visually continuous and opaque coverage. The scale expression is used as a multiplier on top of the automatically chosen world size, thus still allowing the user the freedom to adjust the point density if desired.
-
-
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
-