File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -125,10 +125,10 @@ def _letter_m_coords():
125125
126126 def _letter_t_coords ():
127127 """Coordinates of the top curved horizontal line for letter T."""
128- outer_angles = np .deg2rad (np .arange (150 , 210 , 0.5 ))
128+ outer_angles = np .deg2rad (np .arange (240 , 300 , 0.5 ))
129129 inner_angles = outer_angles [::- 1 ]
130- t_x = np .concatenate ([r2 * np .sin (outer_angles ), r3 * np .sin (inner_angles )])
131- t_y = np .concatenate ([r2 * np .cos (outer_angles ), r3 * np .cos (inner_angles )])
130+ t_x = np .concatenate ([r2 * np .cos (outer_angles ), r3 * np .cos (inner_angles )])
131+ t_y = np .concatenate ([r2 * np .sin (outer_angles ), r3 * np .sin (inner_angles )])
132132 # Ensure the same X-coordinate for the right edge of T and the middle of M.
133133 mask = np .abs (t_x ) <= (thick_gap + r4 ) / 2
134134 return {"x" : t_x [mask ], "y" : t_y [mask ]}
You can’t perform that action at this time.
0 commit comments