ColorTable

Provides a collection of color mapping schemes used for data visualization, thermal scalar displays, and various gradient representations.

This enum defines a range of color tables, each useful for mapping numeric values to specific color gradients. The selection covers general-purpose spectrums, thermal mappings, and specialized gradients for particular visual effects.

  • RAINBOW: Maps values using a rainbow spectrum starting from blue and progressing to red.
  • RAINBOW_REVERSE: Inverse of the RAINBOW mapping; begins with red and transitions to blue.
  • BLACK_WHITE: A grayscale mapping from black to white.
  • BLUE_RED: Interpolates colors in a gradient from blue to red.
  • BLUE_GREEN: Gradually transitions colors from blue to green.
  • YELLOW_RED: Provides a gradient that shifts from yellow to red.
  • GREEN_YELLOW_RED: Starts at green, passes through yellow, and ends at red.
  • RED_YELLOW: Maps from red to yellow.
  • THERMAL_1: A variant of a colormap optimized for representing thermal data.
  • THERMAL_2: An alternative thermal colormap for enhanced scalar visualizations.
  • THERMAL_3: Another thermal variant, offering a slightly different gradient for thermal data.
  • METAL_CASTING: Tailored for visualizing processes such as metal casting.
  • VIRIDIS: A perceptually uniform colormap transitioning from purple to yellow.
  • TURBO: A vibrant, rainbow-based colormap suitable for detailed thermal displays.
  • COOL_TO_WARM: Represents a gradient transitioning from cool blue tones to warm red hues.
  • NORMAL: Alias for RAINBOW; maintained for backward compatibility (considered deprecated).

Enumeration Members

BLACK_WHITE

BLUE_GREEN

BLUE_RED

COOL_TO_WARM

GREEN_YELLOW_RED

METAL_CASTING

NORMAL

RAINBOW

RAINBOW_REVERSE

RED_YELLOW

THERMAL_1

THERMAL_2

THERMAL_3

TURBO

VIRIDIS

YELLOW_RED