------------------------------------------------------------------------------
| 2074 | |
| 2075 | //------------------------------------------------------------------------------ |
| 2076 | vtkMTimeType vtkPolyData::GetMeshMTime() |
| 2077 | { |
| 2078 | vtkMTimeType time = this->Points ? this->Points->GetMTime() : 0; |
| 2079 | if (this->Verts) |
| 2080 | { |
| 2081 | time = vtkMath::Max(this->Verts->GetMTime(), time); |
| 2082 | } |
| 2083 | if (this->Lines) |
| 2084 | { |
| 2085 | time = vtkMath::Max(this->Lines->GetMTime(), time); |
| 2086 | } |
| 2087 | if (this->Polys) |
| 2088 | { |
| 2089 | time = vtkMath::Max(this->Polys->GetMTime(), time); |
| 2090 | } |
| 2091 | if (this->Strips) |
| 2092 | { |
| 2093 | time = vtkMath::Max(this->Strips->GetMTime(), time); |
| 2094 | } |
| 2095 | time = vtkMath::Max(this->GetGhostCellsTime(), time); |
| 2096 | |
| 2097 | return time; |
| 2098 | } |
| 2099 | |
| 2100 | //------------------------------------------------------------------------------ |
| 2101 | vtkMTimeType vtkPolyData::GetMTime() |
no test coverage detected