(part)
| 100 | return ang + 360 if ang < 0 else ang |
| 101 | |
| 102 | def is_missing(part): |
| 103 | return any(joint['visibility'] < VISIBILITY_THRESHOLD for joint in part) |
| 104 | |
| 105 | def is_limb_pointing(upper, mid, lower): |
| 106 | if is_missing([upper, mid, lower]): |
no outgoing calls
no test coverage detected