VTK  9.2.6
vtkLinearContourLineInterpolator.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkLinearContourLineInterpolator.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
29
30#ifndef vtkLinearContourLineInterpolator_h
31#define vtkLinearContourLineInterpolator_h
32
34#include "vtkInteractionWidgetsModule.h" // For export macro
35
36class VTKINTERACTIONWIDGETS_EXPORT vtkLinearContourLineInterpolator
38{
39public:
44
46
50 void PrintSelf(ostream& os, vtkIndent indent) override;
52
53 int InterpolateLine(vtkRenderer* ren, vtkContourRepresentation* rep, int idx1, int idx2) override;
54
55protected:
58
59private:
61 void operator=(const vtkLinearContourLineInterpolator&) = delete;
62};
63
64#endif
represent the vtkContourWidget
a simple class to control print indentation
Definition vtkIndent.h:40
int InterpolateLine(vtkRenderer *ren, vtkContourRepresentation *rep, int idx1, int idx2) override
Subclasses that wish to interpolate a line segment must implement this.
static vtkLinearContourLineInterpolator * New()
Instantiate this class.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instances of this class.
abstract specification for renderers
Definition vtkRenderer.h:73