VTK  9.1.0
vtkAppendArcLength.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: ParaView
4 Module: vtkAppendArcLength.h
5
6 Copyright (c) Kitware, Inc.
7 All rights reserved.
8 See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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=========================================================================*/
29#ifndef vtkAppendArcLength_h
30#define vtkAppendArcLength_h
31
32#include "vtkFiltersCoreModule.h" // For export macro
34
35class VTKFILTERSCORE_EXPORT vtkAppendArcLength : public vtkPolyDataAlgorithm
36{
37public:
40 void PrintSelf(ostream& os, vtkIndent indent) override;
41
42protected:
45
47
51 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
52 vtkInformationVector* outputVector) override;
53
54private:
56 void operator=(const vtkAppendArcLength&) = delete;
58};
59
60#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:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.