------------------------------------------------------------------------------
| 97 | |
| 98 | //------------------------------------------------------------------------------ |
| 99 | vtkAssemblyPath* vtkProp::GetNextPath() |
| 100 | { |
| 101 | if (!this->Paths) |
| 102 | { |
| 103 | return nullptr; |
| 104 | } |
| 105 | return this->Paths->GetNextItem(); |
| 106 | } |
| 107 | |
| 108 | //------------------------------------------------------------------------------ |
| 109 | // This method is used in conjunction with the assembly object to build a copy |
no test coverage detected