1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkBandedPolyDataContourFilter.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkBandedPolyDataContourFilter
* @brief generate filled contours for vtkPolyData
*
* vtkBandedPolyDataContourFilter is a filter that takes as input vtkPolyData
* and produces as output filled contours (also represented as vtkPolyData).
* Filled contours are bands of cells that all have the same cell scalar
* value, and can therefore be colored the same. The method is also referred
* to as filled contour generation.
*
* To use this filter you must specify one or more contour values. You can
* either use the method SetValue() to specify each contour value, or use
* GenerateValues() to generate a series of evenly spaced contours. Each
* contour value divides (or clips) the data into two pieces, values below
* the contour value, and values above it. The scalar values of each
* band correspond to the specified contour value. Note that if the first and
* last contour values are not the minimum/maximum contour range, then two
* extra contour values are added corresponding to the minimum and maximum
* range values. These extra contour bands can be prevented from being output
* by turning clipping on.
*
* @sa
* vtkClipDataSet vtkClipPolyData vtkClipVolume vtkContourFilter
*
*/
#ifndef vtkBandedPolyDataContourFilter_h
#define vtkBandedPolyDataContourFilter_h
#include "vtkFiltersModelingModule.h" // For export macro
#include "vtkPolyDataAlgorithm.h"
#include "vtkContourValues.h" // Needed for inline methods
class vtkPoints;
class vtkCellArray;
class vtkPointData;
class vtkDataArray;
class vtkFloatArray;
class vtkDoubleArray;
#define VTK_SCALAR_MODE_INDEX 0
#define VTK_SCALAR_MODE_VALUE 1
class VTKFILTERSMODELING_EXPORT vtkBandedPolyDataContourFilter : public vtkPolyDataAlgorithm
{
public:
vtkTypeMacro(vtkBandedPolyDataContourFilter,vtkPolyDataAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
/**
* Construct object with no contours defined.
*/
static vtkBandedPolyDataContourFilter *New();
//@{
/**
* Methods to set / get contour values. A single value at a time can be
* set with SetValue(). Multiple contour values can be set with
* GenerateValues(). Note that GenerateValues() generates n values
* inclusive of the start and end range values.
*/
void SetValue(int i, double value);
double GetValue(int i);
double *GetValues();
void GetValues(double *contourValues);
void SetNumberOfContours(int number);
int GetNumberOfContours();
void GenerateValues(int numContours, double range[2]);
void GenerateValues(int numContours, double rangeStart, double rangeEnd);
//@}
//@{
/**
* Indicate whether to clip outside the range specified by the user.
* (The range is contour value[0] to contour value[numContours-1].)
* Clipping means all cells outside of the range specified are not
* sent to the output.
*/
vtkSetMacro(Clipping,int);
vtkGetMacro(Clipping,int);
vtkBooleanMacro(Clipping,int);
//@}
//@{
/**
* Control whether the cell scalars are output as an integer index or
* a scalar value. If an index, the index refers to the bands produced
* by the clipping range. If a value, then a scalar value which is a
* value between clip values is used.
*/
vtkSetClampMacro(ScalarMode,int,VTK_SCALAR_MODE_INDEX,VTK_SCALAR_MODE_VALUE);
vtkGetMacro(ScalarMode,int);
void SetScalarModeToIndex()
{this->SetScalarMode(VTK_SCALAR_MODE_INDEX);}
void SetScalarModeToValue()
{this->SetScalarMode(VTK_SCALAR_MODE_VALUE);}
//@}
//@{
/**
* Turn on/off a flag to control whether contour edges are generated.
* Contour edges are the edges between bands. If enabled, they are
* generated from polygons/triangle strips and placed into the second
* output (the ContourEdgesOutput).
*/
vtkSetMacro(GenerateContourEdges,int);
vtkGetMacro(GenerateContourEdges,int);
vtkBooleanMacro(GenerateContourEdges,int);
//@}
//@{
/**
* Set/Get the clip tolerance. Warning: setting this too large will
* certainly cause numerical issues. Change from the default value
* of FLT_EPSILON at your own risk. The actual internal clip tolerance
* is computed by multiplying ClipTolerance by the scalar range.
*/
vtkSetMacro(ClipTolerance,double);
vtkGetMacro(ClipTolerance,double);
//@}
//@{
/**
* Set/Get the component to use of an input scalars array with more than one
* component. Default is 0.
*/
vtkSetMacro(Component,int);
vtkGetMacro(Component,int);
//@}
/**
* Get the second output which contains the edges dividing the contour
* bands. This output is empty unless GenerateContourEdges is enabled.
*/
vtkPolyData *GetContourEdgesOutput();
/**
* Overload GetMTime because we delegate to vtkContourValues so its
* modified time must be taken into account.
*/
vtkMTimeType GetMTime();
protected:
vtkBandedPolyDataContourFilter();
~vtkBandedPolyDataContourFilter();
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
int ComputeScalarIndex(double);
int IsContourValue(double val);
int ClipEdge(int v1, int v2, vtkPoints *pts, vtkDataArray *inScalars,
vtkDoubleArray *outScalars,
vtkPointData *inPD, vtkPointData *outPD, vtkIdType edgePts[]);
int InsertCell(vtkCellArray *cells, int npts, vtkIdType *pts,
int cellId, double s, vtkFloatArray *newS);
int InsertLine(vtkCellArray *cells, vtkIdType pt1, vtkIdType pt2,
int cellId, double s, vtkFloatArray *newS);
int ComputeClippedIndex(double s);
int InsertNextScalar(vtkFloatArray* scalars, int cellId, int idx);
// data members
vtkContourValues *ContourValues;
int Clipping;
int ScalarMode;
int Component;
// sorted and cleaned contour values
double *ClipValues;
int NumberOfClipValues;
int ClipIndex[2]; //indices outside of this range (inclusive) are clipped
double ClipTolerance; //specify numerical accuracy during clipping
double InternalClipTolerance; //used to clean up numerical problems
//the second output
int GenerateContourEdges;
private:
vtkBandedPolyDataContourFilter(const vtkBandedPolyDataContourFilter&) VTK_DELETE_FUNCTION;
void operator=(const vtkBandedPolyDataContourFilter&) VTK_DELETE_FUNCTION;
};
/**
* Set a particular contour value at contour number i. The index i ranges
* between 0<=i<NumberOfContours.
*/
inline void vtkBandedPolyDataContourFilter::SetValue(int i, double value)
{this->ContourValues->SetValue(i,value);}
/**
* Get the ith contour value.
*/
inline double vtkBandedPolyDataContourFilter::GetValue(int i)
{return this->ContourValues->GetValue(i);}
/**
* Get a pointer to an array of contour values. There will be
* GetNumberOfContours() values in the list.
*/
inline double *vtkBandedPolyDataContourFilter::GetValues()
{return this->ContourValues->GetValues();}
/**
* Fill a supplied list with contour values. There will be
* GetNumberOfContours() values in the list. Make sure you allocate
* enough memory to hold the list.
*/
inline void vtkBandedPolyDataContourFilter::GetValues(double *contourValues)
{this->ContourValues->GetValues(contourValues);}
/**
* Set the number of contours to place into the list. You only really
* need to use this method to reduce list size. The method SetValue()
* will automatically increase list size as needed.
*/
inline void vtkBandedPolyDataContourFilter::SetNumberOfContours(int number)
{this->ContourValues->SetNumberOfContours(number);}
/**
* Get the number of contours in the list of contour values.
*/
inline int vtkBandedPolyDataContourFilter::GetNumberOfContours()
{return this->ContourValues->GetNumberOfContours();}
/**
* Generate numContours equally spaced contour values between specified
* range. Contour values will include min/max range values.
*/
inline void vtkBandedPolyDataContourFilter::GenerateValues(int numContours,
double range[2])
{this->ContourValues->GenerateValues(numContours, range);}
/**
* Generate numContours equally spaced contour values between specified
* range. Contour values will include min/max range values.
*/
inline void vtkBandedPolyDataContourFilter::GenerateValues(int numContours,
double rangeStart,
double rangeEnd)
{this->ContourValues->GenerateValues(numContours, rangeStart, rangeEnd);}
#endif
|