Skip to content

Commit

Permalink
Merge pull request #543 from Mr-Blue-Sky-Candy/fix-plots
Browse files Browse the repository at this point in the history
Fix failing plots
  • Loading branch information
AnderBiguri authored May 10, 2024
2 parents e837531 + 6d032c3 commit c5d2d91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/tigre/utilities/visualization/plot_geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def draw(self, renderer):
from mpl_toolkits.mplot3d import proj3d

xs3d, ys3d, zs3d = self._verts3d
xs, ys, zs = proj3d.proj_transform(xs3d, ys3d, zs3d, renderer.M)
xs, ys, zs = proj3d.proj_transform(xs3d, ys3d, zs3d, self.axes.M)
self.set_positions((xs[0], ys[0]), (xs[1], ys[1]))
matplotlib.patches.FancyArrowPatch.draw(self, renderer)

Expand Down

0 comments on commit c5d2d91

Please sign in to comment.