pqApplicationComponents
#vtkRenderingFreeTypeOpenGL
vtkRenderingFreeType
+ vtkInteractionStyle
)
# --- headers ---
/*!
\return time of modification
*/
-unsigned long int
+vtkMTimeType
SVTK_DeviceActor
::GetMTime()
{
- unsigned long mTime = this->Superclass::GetMTime();
+ vtkMTimeType mTime = this->Superclass::GetMTime();
mTime = std::max(mTime,myGeomFilter->GetMTime());
//@}
virtual
- unsigned long int
+ vtkMTimeType
GetMTime();
/** @name For shrink mamnagement purpose */
}
//-----------------------------------------------------------------------------
-unsigned long int vtkPVAxesActor::GetMTime()
+vtkMTimeType vtkPVAxesActor::GetMTime()
{
- unsigned long mTime=this->Superclass::GetMTime();
-
+ vtkMTimeType mTime=this->Superclass::GetMTime();
return mTime;
}
//-----------------------------------------------------------------------------
-unsigned long int vtkPVAxesActor::GetRedrawMTime()
+vtkMTimeType vtkPVAxesActor::GetRedrawMTime()
{
- unsigned long mTime=this->GetMTime();
+ vtkMTimeType mTime =this->GetMTime();
return mTime;
}
// Description:
// Get the actors mtime plus consider its properties and texture if set.
- unsigned long int GetMTime();
+ vtkMTimeType GetMTime();
// Description:
// Return the mtime of anything that would cause the rendered image to
// appear differently. Usually this involves checking the mtime of the
// prop plus anything else it depends on such as properties, textures
// etc.
- virtual unsigned long GetRedrawMTime();
+ vtkMTimeType GetRedrawMTime();
// Description:
// Set the total length of the axes in 3 dimensions.
/*!
To calculatate last modified time
*/
-unsigned long int
+vtkMTimeType
VTKViewer_Actor
::GetMTime()
{
- unsigned long mTime = this->Superclass::GetMTime();
- unsigned long time = myTransformFilter->GetMTime();
+ vtkMTimeType mTime = this->Superclass::GetMTime();
+ vtkMTimeType time = myTransformFilter->GetMTime();
mTime = ( time > mTime ? time : mTime );
if(vtkDataSet *aDataSet = dynamic_cast<vtkDataSet*>(myPassFilter[0]->GetInput())){ // bad usage of GetInput
time = aDataSet->GetMTime();
//! To calculatate last modified time
virtual
- unsigned long int
+ vtkMTimeType
GetMTime();
//----------------------------------------------------------------------------