VAPOR3 3.9.4
Enumerations
Flags.h File Reference

Go to the source code of this file.

Enumerations

enum  VariableFlags {
  SCALAR = (1u << 0) , VECTOR = (1u << 1) , COLOR = (1u << 2) , AUXILIARY = (1u << 3) ,
  HEIGHT = (1u << 4)
}
 
enum  DimFlags {
  TWOD = (1u << 0) , TWODXY = (1u << 1) , TWODXZ = (1u << 2) , TWODYZ = (1u << 3) ,
  THREED = (1u << 4)
}
 
enum  GeometryFlags { PLANAR = (1u << 0) , RAKE_HACK = (1u << 1) }
 

Enumeration Type Documentation

◆ DimFlags

enum DimFlags

Bit mask to indicate whether 2D, 3D, or 2D and 3D variables are to be supported

Enumerator
TWOD 
TWODXY 
TWODXZ 
TWODYZ 
THREED 

Definition at line 25 of file Flags.h.

◆ GeometryFlags

Bit mask to indicate whether the GeometryWidget should control a single point, or 3D extents with Min/Max controllers

Enumerator
PLANAR 
RAKE_HACK 

Definition at line 35 of file Flags.h.

◆ VariableFlags

Bit masks to indicate what type of variables are to be supported by a particular VariablesWidget instance. These flags correspond to variable names returned by methods:

SCALAR : RenderParams::GetVariableName() VECTOR : RenderParams::GetFieldVariableNames() HGT : RenderParams::GetHeightVariableName() COLOR : RenderParams::GetColorMapVariableNames()

Enumerator
SCALAR 
VECTOR 
COLOR 
AUXILIARY 
HEIGHT 

Definition at line 14 of file Flags.h.