VTK  9.2.6
vtkPolyDataTangents.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkPolyDataTangents.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=========================================================================*/
23
24#ifndef vtkPolyDataTangents_h
25#define vtkPolyDataTangents_h
26
27#include "vtkFiltersCoreModule.h" // For export macro
29
30class vtkFloatArray;
31class vtkIdList;
32class vtkPolyData;
33
34class VTKFILTERSCORE_EXPORT vtkPolyDataTangents : public vtkPolyDataAlgorithm
35{
36public:
38 void PrintSelf(ostream& os, vtkIndent indent) override;
39
41
43
47 vtkSetMacro(ComputePointTangents, bool);
48 vtkGetMacro(ComputePointTangents, bool);
49 vtkBooleanMacro(ComputePointTangents, bool);
51
53
57 vtkSetMacro(ComputeCellTangents, bool);
58 vtkGetMacro(ComputeCellTangents, bool);
59 vtkBooleanMacro(ComputeCellTangents, bool);
61
62protected:
64 ~vtkPolyDataTangents() override = default;
65
67
69 bool ComputeCellTangents = false;
70
71private:
73 void operator=(const vtkPolyDataTangents&) = delete;
74};
75
76#endif
dynamic, self-adjusting array of float
list of point or cell ids
Definition vtkIdList.h:31
a simple class to control print indentation
Definition vtkIndent.h:34
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:85