VTK  9.3.20240329
vtkAppendArcLength.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-FileCopyrightText: Copyright (c) Kitware, Inc.
3 // SPDX-License-Identifier: BSD-3-Clause
21 #ifndef vtkAppendArcLength_h
22 #define vtkAppendArcLength_h
23 
24 #include "vtkFiltersCoreModule.h" // For export macro
25 #include "vtkPolyDataAlgorithm.h"
26 
27 VTK_ABI_NAMESPACE_BEGIN
28 class VTKFILTERSCORE_EXPORT vtkAppendArcLength : public vtkPolyDataAlgorithm
29 {
30 public:
33  void PrintSelf(ostream& os, vtkIndent indent) override;
34 
35 protected:
37  ~vtkAppendArcLength() override;
38 
40 
44  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
45  vtkInformationVector* outputVector) override;
46 
47 private:
48  vtkAppendArcLength(const vtkAppendArcLength&) = delete;
49  void operator=(const vtkAppendArcLength&) = delete;
51 };
52 
53 VTK_ABI_NAMESPACE_END
54 #endif
appends Arc length for input poly lines.
static vtkAppendArcLength * New()
~vtkAppendArcLength() override
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.