(self, posecls: Type['PoseArray'])
| 238 | kd: np.ndarray |
| 239 | |
| 240 | def is_valid(self, posecls: Type['PoseArray']) -> bool: |
| 241 | return posecls.is_valid_array(self.kp) and posecls.is_valid_array(self.kd) |
| 242 | |
| 243 | def expand(self, posesubcls: Type['PoseArray'], posecls: Type['PoseArray']) -> 'PDCfg': |
| 244 | assert self.is_valid(posesubcls) and set(posesubcls.arrorder) <= set(posecls.arrorder) |
no test coverage detected