Skip to content

Commit 993264c

Browse files
committed
Make FRONT_VIEW const
1 parent 5c7d940 commit 993264c

11 files changed

Lines changed: 11 additions & 11 deletions

docs/src/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Try out changing the following default settings:
146146
dt = 0.05
147147
STEPS = 600
148148
PLOT = true
149-
FRONT_VIEW = false
149+
const FRONT_VIEW = false
150150
ZOOM = true
151151
PRINT = false
152152
STATISTIC = false

examples/compare_kps3_kps4.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const PLOT = true
2222
PRINT = false
2323
STATISTIC = false
2424
ZOOM = true
25-
FRONT_VIEW = false
25+
const FRONT_VIEW = false
2626
# end of user parameter section #
2727

2828
if PLOT

examples/plot_side_cl.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dt::Float64 = 0.02
2828
set.solver="DFBDF" # IDA or DFBDF
2929
STEPS = 100
3030
const PLOT = true
31-
FRONT_VIEW = false
31+
const FRONT_VIEW = false
3232
ZOOM = true
3333
PRINT = false
3434
STATISTIC = false

examples/reel_out_1p.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ STEPS = 500
2323
const PLOT = true
2424
PRINT = false
2525
STATISTIC = false
26-
FRONT_VIEW = false
26+
const FRONT_VIEW = false
2727
ZOOM = true
2828
# end of user parameter section #
2929

examples/simulate_simple.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const PLOT = true
2121
PRINT = false
2222
STATISTIC = false
2323
ZOOM = true
24-
FRONT_VIEW = false
24+
const FRONT_VIEW = false
2525
UPWIND_DIR = -pi/2 +deg2rad(10)
2626
# end of user parameter section #
2727

examples/simulate_steering.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ STEPS = 600
1818
const PLOT = true
1919
PRINT = false
2020
STATISTIC = false
21-
FRONT_VIEW = false
21+
const FRONT_VIEW = false
2222
ZOOM = true
2323
# end of user parameter section #
2424

examples/steering_test_1p.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ else
3131
2400
3232
end
3333
const PLOT = true
34-
FRONT_VIEW = true
34+
const FRONT_VIEW = true
3535
ZOOM = true
3636
STATISTIC = false
3737
# end of user parameter section #

examples/steering_test_4p.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ else
3535
2400
3636
end
3737
const PLOT = true
38-
FRONT_VIEW = true
38+
const FRONT_VIEW = true
3939
ZOOM = true
4040
STATISTIC = false
4141
# end of user parameter section #

examples_3d/parking_4p.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ PRINT = false
3333
STATISTIC = false
3434
const PLOT = false
3535
ZOOM = true
36-
FRONT_VIEW = true
36+
const FRONT_VIEW = true
3737
SHOW_KITE = true
3838
# end of user parameter section #
3939

test/plot_kps3.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ using LinearAlgebra
1616
kcu::KCU = KCU(se())
1717
kps3::KPS3 = KPS3(kcu)
1818

19-
FRONT_VIEW = false
19+
const FRONT_VIEW = false
2020

2121
clear!(kps3)
2222
kps3.stiffness_factor = 0.04

0 commit comments

Comments
 (0)