VTK  9.6.1
vtkPolyDataTangents.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
14
15#ifndef vtkPolyDataTangents_h
16#define vtkPolyDataTangents_h
17
18#include "vtkFiltersCoreModule.h" // For export macro
20#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
21
22VTK_ABI_NAMESPACE_BEGIN
23class vtkFloatArray;
24class vtkIdList;
25class vtkPolyData;
26
27class VTKFILTERSCORE_EXPORT VTK_MARSHALAUTO vtkPolyDataTangents : public vtkPolyDataAlgorithm
28{
29public:
31 void PrintSelf(ostream& os, vtkIndent indent) override;
32
34
36
40 vtkSetMacro(ComputePointTangents, bool);
41 vtkGetMacro(ComputePointTangents, bool);
42 vtkBooleanMacro(ComputePointTangents, bool);
44
46
50 vtkSetMacro(ComputeCellTangents, bool);
51 vtkGetMacro(ComputeCellTangents, bool);
52 vtkBooleanMacro(ComputeCellTangents, bool);
54
55protected:
57 ~vtkPolyDataTangents() override = default;
58
60
62 bool ComputeCellTangents = false;
63
64private:
66 void operator=(const vtkPolyDataTangents&) = delete;
67};
68
69VTK_ABI_NAMESPACE_END
70#endif
dynamic, self-adjusting array of float
list of point or cell ids
Definition vtkIdList.h:24
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkPolyDataTangents() override=default
vtkPolyDataTangents()=default
static vtkPolyDataTangents * New()
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition vtkPolyData.h:72
#define VTK_MARSHALAUTO