Skip to content

Commit fa628d5

Browse files
Adjust gap for arrow
1 parent 6b85259 commit fa628d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pygmt/src/pygmtlogo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def _bg_arrow_coords():
149149
# x0, y0 is the same as in _letter_t_coords().
150150
x0 = thick_gt / 2
151151
y0 = 2 * x0 * np.sqrt(3)
152-
arrow_x = [-x0 * 3.0, -x0, x0, x0 * 3.0]
152+
arrow_x = [-x0 * 2 - thick_comp/2, -thick_comp/2, thick_comp/2, x0 * 2 + thick_comp/2]
153153
arrow_y = [-r0 + y0, -r0, -r0, -r0 + y0]
154154
return {"x": arrow_x, "y": arrow_y}
155155

0 commit comments

Comments
 (0)