From b1ba19e33018cb4bd04be9e08c1d09e66bd8de19 Mon Sep 17 00:00:00 2001 From: Tim Scheffler Date: Sat, 4 Apr 2015 14:38:17 +0200 Subject: [PATCH] Removed old dependency. --- .gitignore | 18 ++++++++++++++++++ Visualiser/gui.py | 5 ----- 2 files changed, 18 insertions(+), 5 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6cc0e5c --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ + +*.so + +*.py# + +*.c~ + +*.h~ + +*.pyc + +*.DS_Store + +*.pyc + +.gitignore~ + +*.py~ diff --git a/Visualiser/gui.py b/Visualiser/gui.py index 6d9f081..44790f5 100755 --- a/Visualiser/gui.py +++ b/Visualiser/gui.py @@ -11,8 +11,6 @@ #helper modules from vector import Vec -import simple_simulation - class Window(object): @@ -145,8 +143,5 @@ def draw(self): glutSwapBuffers() -if __name__ == "__main__": - p2 = Window(simple_simulation.Simulation()) -