Commit 14f3e6ea authored by sumpfralle's avatar sumpfralle

fixed code-style issues


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@493 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 010e5453
...@@ -21,6 +21,7 @@ along with PyCAM. If not, see <http://www.gnu.org/licenses/>. ...@@ -21,6 +21,7 @@ along with PyCAM. If not, see <http://www.gnu.org/licenses/>.
""" """
from pycam.Geometry.Triangle import Triangle from pycam.Geometry.Triangle import Triangle
try: try:
import ode import ode
except ImportError: except ImportError:
...@@ -28,7 +29,8 @@ except ImportError: ...@@ -28,7 +29,8 @@ except ImportError:
ShapeCylinder = lambda radius, height: ode.GeomCylinder(None, radius, height) ShapeCylinder = lambda radius, height: ode.GeomCylinder(None, radius, height)
ShapeCapsule = lambda radius, height: ode.GeomCapsule(None, radius, height - (2 * radius)) ShapeCapsule = lambda radius, height: \
ode.GeomCapsule(None, radius, height - (2 * radius))
_ode_override_state = None _ode_override_state = None
...@@ -165,7 +167,9 @@ class PhysicalWorld: ...@@ -165,7 +167,9 @@ class PhysicalWorld:
def set_drill_position(self, position): def set_drill_position(self, position):
if self._drill: if self._drill:
position = (position[0] + self._drill_offset[0], position[1] + self._drill_offset[1], position[2] + self._drill_offset[2]) position = (position[0] + self._drill_offset[0],
position[1] + self._drill_offset[1],
position[2] + self._drill_offset[2])
self._drill.setPosition(position) self._drill.setPosition(position)
def _get_rays_for_geom(self, geom): def _get_rays_for_geom(self, geom):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment