Skip to content
Snippets Groups Projects
Commit 21ac5115 authored by joan's avatar joan
Browse files

fix output filename

parent 8c4b480a
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,10 @@ def main():
print(traj.getTraj())
traj.draw("test.png")
if args.filename:
traj.draw(args.filename+".png")
else:
traj.draw("sample.png")
if __name__ == "__main__" :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment