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.
67 lines
2.0 KiB
C
67 lines
2.0 KiB
C
|
3 weeks ago
|
/*=========================================================================
|
||
|
|
|
||
|
|
Program: Visualization Toolkit
|
||
|
|
Module: vtkForceTime.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.
|
||
|
|
|
||
|
|
=========================================================================*/
|
||
|
|
|
||
|
|
#ifndef vtkForceTime_h
|
||
|
|
#define vtkForceTime_h
|
||
|
|
|
||
|
|
#include "vtkFiltersHybridModule.h" // For export macro
|
||
|
|
#include "vtkPassInputTypeAlgorithm.h"
|
||
|
|
|
||
|
|
class VTKFILTERSHYBRID_EXPORT vtkForceTime : public vtkPassInputTypeAlgorithm
|
||
|
|
{
|
||
|
|
public :
|
||
|
|
static vtkForceTime* New();
|
||
|
|
vtkTypeMacro(vtkForceTime, vtkPassInputTypeAlgorithm);
|
||
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
||
|
|
|
||
|
|
// Description:
|
||
|
|
// Replace the pipeline time by this one.
|
||
|
|
vtkSetMacro(ForcedTime, double);
|
||
|
|
vtkGetMacro(ForcedTime, double);
|
||
|
|
|
||
|
|
// Description:
|
||
|
|
// Use the ForcedTime. If disabled, use usual pipeline time.
|
||
|
|
vtkSetMacro(IgnorePipelineTime, bool);
|
||
|
|
vtkGetMacro(IgnorePipelineTime, bool);
|
||
|
|
vtkBooleanMacro(IgnorePipelineTime, bool);
|
||
|
|
|
||
|
|
protected:
|
||
|
|
vtkForceTime();
|
||
|
|
virtual ~vtkForceTime();
|
||
|
|
|
||
|
|
virtual int RequestUpdateExtent(vtkInformation*,
|
||
|
|
vtkInformationVector**,
|
||
|
|
vtkInformationVector*);
|
||
|
|
virtual int RequestInformation(vtkInformation*,
|
||
|
|
vtkInformationVector**,
|
||
|
|
vtkInformationVector*);
|
||
|
|
|
||
|
|
virtual int RequestData(vtkInformation*,
|
||
|
|
vtkInformationVector**,
|
||
|
|
vtkInformationVector*);
|
||
|
|
|
||
|
|
private:
|
||
|
|
vtkForceTime(const vtkForceTime&) VTK_DELETE_FUNCTION;
|
||
|
|
void operator=(const vtkForceTime&) VTK_DELETE_FUNCTION;
|
||
|
|
|
||
|
|
double ForcedTime;
|
||
|
|
bool IgnorePipelineTime;
|
||
|
|
double PipelineTime;
|
||
|
|
bool PipelineTimeFlag;
|
||
|
|
vtkDataObject* Cache;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif //vtkForceTime_h
|