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

public static enum TLspPointCloudStyle.ScalingMode extends Enum<TLspPointCloudStyle.ScalingMode>
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:
  • Enum Constant Details

    • PIXEL_SIZE

      public static final TLspPointCloudStyle.ScalingMode PIXEL_SIZE
      The scale expression determines the size of each point in pixels.
    • ADAPTIVE_WORLD_SIZE

      public static final TLspPointCloudStyle.ScalingMode 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

      public static TLspPointCloudStyle.ScalingMode[] 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 TLspPointCloudStyle.ScalingMode 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