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.

77 lines
2.1 KiB
C

/*=========================================================================
Program: Visualization Toolkit
Module: vtkPolyDataTangents.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm 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 vtkPolyDataTangents
* @brief compute tangents for triangulated polydata
*
* vtkPolyDataTangents is a filter that computes point and/or cell tangents for a triangulated
* polydata.
* This filter requires an input with both normals and tcoords on points.
*/
#ifndef vtkPolyDataTangents_h
#define vtkPolyDataTangents_h
#include "vtkFiltersCoreModule.h" // For export macro
#include "vtkPolyDataAlgorithm.h"
class vtkFloatArray;
class vtkIdList;
class vtkPolyData;
class VTKFILTERSCORE_EXPORT vtkPolyDataTangents : public vtkPolyDataAlgorithm
{
public:
vtkTypeMacro(vtkPolyDataTangents, vtkPolyDataAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent) override;
static vtkPolyDataTangents* New();
//@{
/**
* Turn on/off the computation of point tangents.
* Default is true.
*/
vtkSetMacro(ComputePointTangents, bool);
vtkGetMacro(ComputePointTangents, bool);
vtkBooleanMacro(ComputePointTangents, bool);
//@}
//@{
/**
* Turn on/off the computation of cell tangents.
* Default is false.
*/
vtkSetMacro(ComputeCellTangents, bool);
vtkGetMacro(ComputeCellTangents, bool);
vtkBooleanMacro(ComputeCellTangents, bool);
//@}
protected:
vtkPolyDataTangents() = default;
~vtkPolyDataTangents() override = default;
int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
bool ComputePointTangents = true;
bool ComputeCellTangents = false;
private:
vtkPolyDataTangents(const vtkPolyDataTangents&) = delete;
void operator=(const vtkPolyDataTangents&) = delete;
};
#endif