Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
ufechner7 committed Nov 2, 2024
1 parent 0c4b248 commit b01a668
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/joystick.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ TIME_LAPSE_RATIO = 1
SHOW_KITE = true
# end of user parameter section #

if ! @isdefined time_vec_tot; const time_vec_tot = zeros(Int(MAX_TIME/dt)); end
if ! @isdefined time_vec_gc; const time_vec_gc = zeros(Int(MAX_TIME/dt)); end
time_vec_tot::Vector{Float64} = zeros(Int(MAX_TIME/dt))
time_vec_gc::Vector{Float64} = zeros(Int(MAX_TIME/dt))
viewer::Viewer3D = Viewer3D(SHOW_KITE)

steps=0
Expand Down

0 comments on commit b01a668

Please sign in to comment.