Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 5f7f174c authored by ulrich_y's avatar ulrich_y
Browse files

make mulify work also for 3d plots

parent d6ef524a
No related branches found
No related tags found
No related merge requests found
......@@ -139,11 +139,20 @@ def mulify(fig):
(np.array([1/1.3,-1])*vertices+55.)/550.+np.array([0.13,0.66]),
commands
),
fc="none", ec='gray', transform=fig.transFigure
)
ax.add_patch(pp1)
ax.text(
0.21, 0.69,
"$\\small\\textsc{McMule}$",
transform=fig.transFigure, ha='center',va='top', color='gray'
fc="none", ec='gray', transform=fig.transFigure, zorder=100000
)
if '3D' in str(type(ax)):
fig.patches.append(pp1)
fig.text(
0.21, 0.69,
"$\\small\\textsc{McMule}$",
transform=fig.transFigure, ha='center',va='top', color='gray'
)
else:
ax.add_patch(pp1)
ax.text(
0.21, 0.69,
"$\\small\\textsc{McMule}$",
transform=fig.transFigure, ha='center',va='top', color='gray'
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment