Delete the vtkObject corresponding to the given objectId from the objectIdMap. Returns true if delete succeeded.
(self, id)
| 62 | return self.getApplication().GetObjectIdMap().FreeObject(obj) |
| 63 | |
| 64 | def freeObjectById(self, id): |
| 65 | """ |
| 66 | Delete the vtkObject corresponding to the given objectId from the objectIdMap. |
| 67 | Returns true if delete succeeded. |
| 68 | """ |
| 69 | return self.getApplication().GetObjectIdMap().FreeObjectById(id) |
| 70 | |
| 71 | def getView(self, vid): |
| 72 | """ |
nothing calls this directly
no test coverage detected