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.
Tools/Win64/VTK/include/vtk-9.0/vtkTerrainContourLineInterp...

116 lines
3.7 KiB
C

/*=========================================================================
Program: Visualization Toolkit
Module: vtkTerrainContourLineInterpolator.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 vtkTerrainContourLineInterpolator
* @brief Contour interpolator for DEM data.
*
*
* vtkTerrainContourLineInterpolator interpolates nodes on height field data.
* The class is meant to be used in conjunciton with a vtkContourWidget,
* enabling you to draw paths on terrain data. The class internally uses a
* vtkProjectedTerrainPath. Users can set kind of interpolation
* desired between two node points by setting the modes of the this filter.
* For instance:
*
* \code
* contourRepresentation->SetLineInterpolator(interpolator);
* interpolator->SetImageData( demDataFile );
* interpolator->GetProjector()->SetProjectionModeToHug();
* interpolator->SetHeightOffset(25.0);
* \endcode
*
* You are required to set the ImageData to this class as the height-field
* image.
*
* @sa
* vtkTerrainDataPointPlacer vtkProjectedTerrainPath
*/
#ifndef vtkTerrainContourLineInterpolator_h
#define vtkTerrainContourLineInterpolator_h
#include "vtkContourLineInterpolator.h"
#include "vtkInteractionWidgetsModule.h" // For export macro
class vtkImageData;
class vtkProjectedTerrainPath;
class VTKINTERACTIONWIDGETS_EXPORT vtkTerrainContourLineInterpolator
: public vtkContourLineInterpolator
{
public:
/**
* Instantiate this class.
*/
static vtkTerrainContourLineInterpolator* New();
//@{
/**
* Standard methods for instances of this class.
*/
vtkTypeMacro(vtkTerrainContourLineInterpolator, vtkContourLineInterpolator);
void PrintSelf(ostream& os, vtkIndent indent) override;
//@}
/**
* Interpolate to create lines between contour nodes idx1 and idx2.
* Depending on the projection mode, the interpolated line may either
* hug the terrain, just connect the two points with a straight line or
* a non-occluded interpolation.
* Used internally by vtkContourRepresentation.
*/
int InterpolateLine(vtkRenderer* ren, vtkContourRepresentation* rep, int idx1, int idx2) override;
/**
* The interpolator is given a chance to update the node.
* Used internally by vtkContourRepresentation
* Returns 0 if the node (world position) is unchanged.
*/
int UpdateNode(vtkRenderer*, vtkContourRepresentation*, double* vtkNotUsed(node),
int vtkNotUsed(idx)) override;
//@{
/**
* Set the height field data. The height field data is a 2D image. The
* scalars in the image represent the height field. This must be set.
*/
virtual void SetImageData(vtkImageData*);
vtkGetObjectMacro(ImageData, vtkImageData);
//@}
//@{
/**
* Get the vtkProjectedTerrainPath operator used to project the terrain
* onto the data. This operator has several modes, See the documentation
* of vtkProjectedTerrainPath. The default mode is to hug the terrain
* data at 0 height offset.
*/
vtkGetObjectMacro(Projector, vtkProjectedTerrainPath);
//@}
protected:
vtkTerrainContourLineInterpolator();
~vtkTerrainContourLineInterpolator() override;
vtkImageData* ImageData; // height field data
vtkProjectedTerrainPath* Projector;
private:
vtkTerrainContourLineInterpolator(const vtkTerrainContourLineInterpolator&) = delete;
void operator=(const vtkTerrainContourLineInterpolator&) = delete;
};
#endif