From 62934e961a8f7ce39c11b29e7e6cb3d54312f1ee Mon Sep 17 00:00:00 2001
From: sumpfralle <sumpfralle@bbaffbd6-741e-11dd-a85d-61de82d9cad9>
Date: Mon, 7 Jun 2010 02:29:59 +0000
Subject: [PATCH] fixed careless migration of the path generator code

git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@338 bbaffbd6-741e-11dd-a85d-61de82d9cad9
---
 pycam/Toolpath/Generator.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pycam/Toolpath/Generator.py b/pycam/Toolpath/Generator.py
index 07d3697..09b1707 100644
--- a/pycam/Toolpath/Generator.py
+++ b/pycam/Toolpath/Generator.py
@@ -78,7 +78,7 @@ def generate_toolpath(model, tool_settings=None, bounds=None, direction="x",
     if isinstance(cutter, basestring):
         return cutter
     cutter.set_required_distance(material_allowance)
-    physics = _get_physics(cutter, calculation_backend)
+    physics = _get_physics(model, cutter, calculation_backend)
     if isinstance(physics, basestring):
         return physics
     generator = _get_pathgenerator_instance(model, cutter, path_generator, path_postprocessor, material_allowance, safety_height, physics)
@@ -144,7 +144,7 @@ def _get_pathgenerator_instance(model, cutter, pathgenerator, pathprocessor,
     else:
         return "Invalid path generator (%s): not one of %s" % (pathgenerator, PATH_GENERATORS)
 
-def _get_physics(cutter, calculation_backend):
+def _get_physics(model, cutter, calculation_backend):
     if calculation_backend is None:
         # triangular collision detection does not need any physical model
         return None
-- 
2.18.1