Delete the given vtkObject from the objectIdMap. Returns true if delete succeeded.
(self, obj)
| 56 | return self.getApplication().GetObjectIdMap().GetGlobalId(obj) |
| 57 | |
| 58 | def freeObject(self, obj): |
| 59 | """ |
| 60 | Delete the given vtkObject from the objectIdMap. Returns true if delete succeeded. |
| 61 | """ |
| 62 | return self.getApplication().GetObjectIdMap().FreeObject(obj) |
| 63 | |
| 64 | def freeObjectById(self, id): |
| 65 | """ |
nothing calls this directly
no test coverage detected