Skip to content

Commit

Permalink
spool LOS plot: fix LOS arrow direction
Browse files Browse the repository at this point in the history
  • Loading branch information
hsudha authored May 8, 2018
1 parent 1ecfadc commit 2c23382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spool/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def orientArrow(self):
phi = num.median(self.model.scene.phi)
theta = num.median(self.model.scene.theta)

angle = -num.rad2deg(phi)
angle = 180. + num.rad2deg(phi)
theta_f = theta / (num.pi/2)

tipAngle = 30. + theta_f * 20.
Expand Down

0 comments on commit 2c23382

Please sign in to comment.