Skip to main content
Version: 🚧 Nightly

File vtkF3DImporter.h

Location: vtkF3DImporter.h

Classes

Includes

  • vtkextModule.h

Source



#ifndef vtkF3DImporter_h
#define vtkF3DImporter_h

#include "vtkextModule.h"

#include <vtkImporter.h>
#include <vtkVersion.h>

class vtkInformationIntegerKey;

class VTKEXT_EXPORT vtkF3DImporter : public vtkImporter
{
public:
static vtkInformationIntegerKey* ACTOR_IS_ARMATURE();

#if VTK_VERSION_NUMBER >= VTK_VERSION_CHECK(9, 3, 20240707)
bool UpdateAtTimeValue(double timeValue) override;
#else
virtual bool UpdateAtTimeValue(double timeValue);
void UpdateTimeStep(double timeValue) override;
#endif

#if VTK_VERSION_NUMBER < VTK_VERSION_CHECK(9, 4, 20250507)
enum class AnimationSupportLevel : unsigned char{ NONE, UNIQUE, SINGLE, MULTI };

virtual AnimationSupportLevel GetAnimationSupportLevel()
{
return AnimationSupportLevel::MULTI;
}
#endif

void SetFailureStatus();
};

#endif