Skip to content

Commit

Permalink
Bug fix: RePlot error
Browse files Browse the repository at this point in the history
  • Loading branch information
JARA99 committed Nov 21, 2021
1 parent 17792d3 commit a126282
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/replot.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@
MinX = 0
MaxY = float(file.readline().replace('MaxY: ',''))
MinY = 0
MaxV = float(file.readline().replace('MaxVo: ',''))
# MinV = float(file.readline().replace('MinV: ',''))
ForceConstant = float(file.readline().replace('ForceConstant: ',''))
DeltaTime = float(file.readline().replace('DeltaTime: ',''))
Iterations = int(file.readline().replace('Iterations: ',''))
Expand Down Expand Up @@ -90,5 +92,5 @@

# print(InvertPalette)

gpar.AutoGnuplot(MaxX,MaxY,Palette,InvertPalette)
gpar.AutoGnuplot(MaxX,MaxY,Palette,InvertPalette,DeltaTime)

0 comments on commit a126282

Please sign in to comment.