Skip to main content
Version: 🚧 Nightly

File vtkF3DFaceVaryingPointDispatcher.h

Location: vtkF3DFaceVaryingPointDispatcher.h

Classes

Includes

  • vtkextModule.h

Source


#ifndef vtkF3DFaceVaryingPointDispatcher_h
#define vtkF3DFaceVaryingPointDispatcher_h

#include <vtkPolyDataAlgorithm.h>

#include "vtkextModule.h"

class VTKEXT_EXPORT vtkF3DFaceVaryingPointDispatcher : public vtkPolyDataAlgorithm
{
public:
static vtkF3DFaceVaryingPointDispatcher* New();
vtkTypeMacro(vtkF3DFaceVaryingPointDispatcher, vtkPolyDataAlgorithm);

static vtkInformationIntegerKey* INTERPOLATION_TYPE();

protected:
vtkF3DFaceVaryingPointDispatcher();
~vtkF3DFaceVaryingPointDispatcher() override;

int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;

private:
vtkF3DFaceVaryingPointDispatcher(const vtkF3DFaceVaryingPointDispatcher&) = delete;
void operator=(const vtkF3DFaceVaryingPointDispatcher&) = delete;
};

#endif