CGM Objects Library
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
InterpInteriorParams.h
1 
3 
4 #pragma once
5 
6 #include "Utility/DPoint.h"
7 #include "Utility/Color.h"
8 
9 namespace Larson
10 {
13  {
14 
15  public:
17  virtual ~CInterpInteriorParams();
18 
20  long style;
22  double refGeom[4];
24  long nStages;
25  // stage designators
26  double *stageDesignators;
27  // stage colors
28  CColor *stageColors;
30  unsigned long nRefs;
31  };
32 };
long nStages
number of stages
Definition: InterpInteriorParams.h:24
double refGeom[4]
reference geometry, Parallel will have 2 scalars while Elliptcaland Triangular will have 4 ...
Definition: InterpInteriorParams.h:22
unsigned long nRefs
number of references to this definition
Definition: InterpInteriorParams.h:30
long style
Interpolated Interior Style, see InterpolatedInteriorStyle enum.
Definition: InterpInteriorParams.h:20
CInterpInteriorParams – Interpolated Interior Style parameters.
Definition: InterpInteriorParams.h:12