You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.9 KiB
C++
61 lines
1.9 KiB
C++
/*=========================================================================
|
|
|
|
Program: ParaView
|
|
Module: vtkAppendArcLength.h
|
|
|
|
Copyright (c) Kitware, Inc.
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
/**
|
|
* @class vtkAppendArcLength
|
|
* @brief appends Arc length for input poly lines.
|
|
*
|
|
* vtkAppendArcLength is used for filter such as plot-over-line. In such cases,
|
|
* we need to add an attribute array that is the arc_length over the length of
|
|
* the probed line. That's when vtkAppendArcLength can be used. It adds a new
|
|
* point-data array named "arc_length" with the computed arc length for each of
|
|
* the polylines in the input. For all other cell types, the arc length is set
|
|
* to 0.
|
|
* @warning
|
|
* This filter assumes that cells don't share points.
|
|
*/
|
|
|
|
#ifndef vtkAppendArcLength_h
|
|
#define vtkAppendArcLength_h
|
|
|
|
#include "vtkFiltersCoreModule.h" // For export macro
|
|
#include "vtkPolyDataAlgorithm.h"
|
|
|
|
class VTKFILTERSCORE_EXPORT vtkAppendArcLength : public vtkPolyDataAlgorithm
|
|
{
|
|
public:
|
|
static vtkAppendArcLength* New();
|
|
vtkTypeMacro(vtkAppendArcLength, vtkPolyDataAlgorithm);
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
|
|
|
protected:
|
|
vtkAppendArcLength();
|
|
~vtkAppendArcLength() override;
|
|
|
|
//@{
|
|
/**
|
|
* This is called by the superclass.
|
|
* This is the method you should override.
|
|
*/
|
|
int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
|
|
vtkInformationVector* outputVector) override;
|
|
|
|
private:
|
|
vtkAppendArcLength(const vtkAppendArcLength&) = delete;
|
|
void operator=(const vtkAppendArcLength&) = delete;
|
|
//@}
|
|
};
|
|
|
|
#endif
|