(dst, target, s)
| 79 | return axis * np.arctan2(s, c) |
| 80 | |
| 81 | def draw_str(dst, target, s): |
| 82 | x, y = target |
| 83 | cv2.putText(dst, s, (x+1, y+1), cv2.FONT_HERSHEY_PLAIN, 1.0, (0, 0, 0), thickness = 2, lineType=cv2.LINE_AA) |
| 84 | cv2.putText(dst, s, (x, y), cv2.FONT_HERSHEY_PLAIN, 1.0, (255, 255, 255), lineType=cv2.LINE_AA) |
| 85 | |
| 86 | class Sketcher: |
| 87 | def __init__(self, windowname, dests, colors_func): |
no outgoing calls
no test coverage detected