VTK  9.6.2
vtkPlotPoints3D.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
3
19
20#ifndef vtkPlotPoints3D_h
21#define vtkPlotPoints3D_h
22
23#include "vtkChartsCoreModule.h" // For export macro
24#include "vtkPlot3D.h"
25#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
26
27VTK_ABI_NAMESPACE_BEGIN
28class vtkContext2D;
29
30class VTKCHARTSCORE_EXPORT VTK_MARSHALAUTO vtkPlotPoints3D : public vtkPlot3D
31{
32public:
33 vtkTypeMacro(vtkPlotPoints3D, vtkPlot3D);
34 void PrintSelf(ostream& os, vtkIndent indent) override;
36
40 bool Paint(vtkContext2D* painter) override;
41
42protected:
44 ~vtkPlotPoints3D() override;
45
46 void ReleaseGraphicsCache() override;
47
52