(cls, jid: int)
| 39 | |
| 40 | @classmethod |
| 41 | def joint_names(cls, jid: int) -> str: |
| 42 | if not cls._joint_names: |
| 43 | cls.__init_joint_names() |
| 44 | return cls._joint_names[cls.arrorder.index(jid)] |
| 45 | |
| 46 | @staticmethod |
| 47 | @lru_cache(maxsize=1) |
no test coverage detected