VTK  9.3.0
vtkLinearContourLineInterpolator.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
18 #ifndef vtkLinearContourLineInterpolator_h
19 #define vtkLinearContourLineInterpolator_h
20 
22 #include "vtkInteractionWidgetsModule.h" // For export macro
23 
24 VTK_ABI_NAMESPACE_BEGIN
25 class VTKINTERACTIONWIDGETS_EXPORT vtkLinearContourLineInterpolator
27 {
28 public:
33 
35 
39  void PrintSelf(ostream& os, vtkIndent indent) override;
41 
42  int InterpolateLine(vtkRenderer* ren, vtkContourRepresentation* rep, int idx1, int idx2) override;
43 
44 protected:
47 
48 private:
50  void operator=(const vtkLinearContourLineInterpolator&) = delete;
51 };
52 
53 VTK_ABI_NAMESPACE_END
54 #endif
Defines API for interpolating/modifying nodes from a vtkContourRepresentation.
represent the vtkContourWidget
a simple class to control print indentation
Definition: vtkIndent.h:29
Interpolates supplied nodes with line segments.
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:62