You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
187 lines
5.9 KiB
C++
187 lines
5.9 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkGenericCutter.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 vtkGenericCutter
|
|
* @brief cut a vtkGenericDataSet with an implicit function or scalar data
|
|
*
|
|
* vtkGenericCutter is a filter to cut through data using any subclass of
|
|
* vtkImplicitFunction. That is, a polygonal surface is created
|
|
* corresponding to the implicit function F(x,y,z) = value(s), where
|
|
* you can specify one or more values used to cut with.
|
|
*
|
|
* In VTK, cutting means reducing a cell of dimension N to a cut surface
|
|
* of dimension N-1. For example, a tetrahedron when cut by a plane (i.e.,
|
|
* vtkPlane implicit function) will generate triangles. (In comparison,
|
|
* clipping takes a N dimensional cell and creates N dimension primitives.)
|
|
*
|
|
* vtkGenericCutter is generally used to "slice-through" a dataset, generating
|
|
* a surface that can be visualized. It is also possible to use
|
|
* vtkGenericCutter to do a form of volume rendering. vtkGenericCutter does
|
|
* this by generating multiple cut surfaces (usually planes) which are ordered
|
|
* (and rendered) from back-to-front. The surfaces are set translucent to give
|
|
* a volumetric rendering effect.
|
|
*
|
|
* This filter has been implemented to operate on generic datasets, rather
|
|
* than the typical vtkDataSet (and subclasses). vtkGenericDataSet is a more
|
|
* complex cousin of vtkDataSet, typically consisting of nonlinear,
|
|
* higher-order cells. To process this type of data, generic cells are
|
|
* automatically tessellated into linear cells prior to isocontouring.
|
|
*
|
|
* @sa
|
|
* vtkCutter vtkImplicitFunction vtkClipPolyData vtkGenericDataSet
|
|
*/
|
|
|
|
#ifndef vtkGenericCutter_h
|
|
#define vtkGenericCutter_h
|
|
|
|
#include "vtkFiltersGenericModule.h" // For export macro
|
|
#include "vtkPolyDataAlgorithm.h"
|
|
|
|
class vtkContourValues;
|
|
|
|
class vtkImplicitFunction;
|
|
class vtkIncrementalPointLocator;
|
|
class vtkPointData;
|
|
class vtkCellData;
|
|
|
|
class VTKFILTERSGENERIC_EXPORT vtkGenericCutter : public vtkPolyDataAlgorithm
|
|
{
|
|
public:
|
|
vtkTypeMacro(vtkGenericCutter, vtkPolyDataAlgorithm);
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
|
|
|
/**
|
|
* Construct with user-specified implicit function; initial value of 0.0; and
|
|
* generating cut scalars turned off.
|
|
*/
|
|
static vtkGenericCutter* New();
|
|
|
|
/**
|
|
* Set a particular contour value at contour number i. The index i ranges
|
|
* between 0<=i<NumberOfContours.
|
|
*/
|
|
void SetValue(int i, double value);
|
|
|
|
/**
|
|
* Get the ith contour value.
|
|
*/
|
|
double GetValue(int i);
|
|
|
|
/**
|
|
* Get a pointer to an array of contour values. There will be
|
|
* GetNumberOfContours() values in the list.
|
|
*/
|
|
double* 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.
|
|
*/
|
|
void GetValues(double* 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.
|
|
*/
|
|
void SetNumberOfContours(int number);
|
|
|
|
/**
|
|
* Get the number of contours in the list of contour values.
|
|
*/
|
|
vtkIdType GetNumberOfContours();
|
|
|
|
/**
|
|
* Generate numContours equally spaced contour values between specified
|
|
* range. Contour values will include min/max range values.
|
|
*/
|
|
void GenerateValues(int numContours, double range[2]);
|
|
|
|
/**
|
|
* Generate numContours equally spaced contour values between specified
|
|
* range. Contour values will include min/max range values.
|
|
*/
|
|
void GenerateValues(int numContours, double rangeStart, double rangeEnd);
|
|
|
|
/**
|
|
* Override GetMTime because we delegate to vtkContourValues and refer to
|
|
* vtkImplicitFunction.
|
|
*/
|
|
vtkMTimeType GetMTime() override;
|
|
|
|
//@{
|
|
/**
|
|
* Specify the implicit function to perform the cutting.
|
|
*/
|
|
virtual void SetCutFunction(vtkImplicitFunction*);
|
|
vtkGetObjectMacro(CutFunction, vtkImplicitFunction);
|
|
//@}
|
|
|
|
//@{
|
|
/**
|
|
* If this flag is enabled, then the output scalar values will be
|
|
* interpolated from the implicit function values, and not the input scalar
|
|
* data.
|
|
*/
|
|
vtkSetMacro(GenerateCutScalars, vtkTypeBool);
|
|
vtkGetMacro(GenerateCutScalars, vtkTypeBool);
|
|
vtkBooleanMacro(GenerateCutScalars, vtkTypeBool);
|
|
//@}
|
|
|
|
//@{
|
|
/**
|
|
* Specify a spatial locator for merging points. By default,
|
|
* an instance of vtkMergePoints is used.
|
|
*/
|
|
void SetLocator(vtkIncrementalPointLocator* locator);
|
|
vtkGetObjectMacro(Locator, vtkIncrementalPointLocator);
|
|
//@}
|
|
|
|
/**
|
|
* Create default locator. Used to create one when none is specified. The
|
|
* locator is used to merge coincident points.
|
|
*/
|
|
void CreateDefaultLocator();
|
|
|
|
protected:
|
|
vtkGenericCutter(vtkImplicitFunction* cf = nullptr);
|
|
~vtkGenericCutter() override;
|
|
|
|
//@{
|
|
/**
|
|
* Actual implementation of the cutter operation.
|
|
*/
|
|
int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
|
|
int FillInputPortInformation(int, vtkInformation*) override;
|
|
//@}
|
|
|
|
vtkImplicitFunction* CutFunction;
|
|
vtkIncrementalPointLocator* Locator;
|
|
vtkContourValues* ContourValues;
|
|
vtkTypeBool GenerateCutScalars;
|
|
|
|
// Used internal by vtkGenericAdaptorCell::Contour()
|
|
vtkPointData* InternalPD;
|
|
vtkPointData* SecondaryPD;
|
|
vtkCellData* SecondaryCD;
|
|
|
|
private:
|
|
vtkGenericCutter(const vtkGenericCutter&) = delete;
|
|
void operator=(const vtkGenericCutter&) = delete;
|
|
};
|
|
|
|
#endif
|