Skip to content

Commit

Permalink
Fix depreciations
Browse files Browse the repository at this point in the history
  • Loading branch information
Uwe Fechner committed Mar 18, 2024
1 parent 9eb0b04 commit 4075f65
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/viewer3D.jl
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@ function Viewer3D(show_kite=true, autolabel="Autopilot")

fontsize[] = TEXT_SIZE
fontsize2[] = AXIS_LABEL_SIZE
text!(scene3D, "z", position = Point3f0(0, 0, 14.6), fontsize = fontsize2, align = (:center, :center), show_axis = false)
text!(scene3D, "x", position = Point3f0(17, 0,0), fontsize = fontsize2, align = (:center, :center), show_axis = false)
text!(scene3D, "y", position = Point3f0( 0, 14.5, 0), fontsize = fontsize2, align = (:center, :center), show_axis = false)
text!(scene3D, "z", position = Point3f(0, 0, 14.6), fontsize = fontsize2, align = (:center, :center), show_axis = false)
text!(scene3D, "x", position = Point3f(17, 0,0), fontsize = fontsize2, align = (:center, :center), show_axis = false)
text!(scene3D, "y", position = Point3f( 0, 14.5, 0), fontsize = fontsize2, align = (:center, :center), show_axis = false)

text!(scene2D, status, position = Point2f0( 20, 0), fontsize = TEXT_SIZE, align = (:left, :bottom), show_axis = false, space=:pixel)
text!(scene2D, status, position = Point2f( 20, 0), fontsize = TEXT_SIZE, align = (:left, :bottom), show_axis = false, space=:pixel)
textnode2[]="depower\nsteering:"
status[]="Stopped"

Expand Down

0 comments on commit 4075f65

Please sign in to comment.