(self, joint)
| 193 | return True |
| 194 | |
| 195 | def remove_joint(self, joint): |
| 196 | if joint.label not in self._visible: |
| 197 | return False |
| 198 | self.data[joint.label] = np.nan |
| 199 | self._visible.remove(joint.label) |
| 200 | self._idx.remove(joint.idx) |
| 201 | return True |
| 202 | |
| 203 | def add_link(self, link, store_dict=False): |
| 204 | if store_dict: |