Commit 1c87b0a2 authored by sumpfralle's avatar sumpfralle

fixed another bug of the collision detection code (due to using int instead of float)


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@752 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 18f3945b
...@@ -47,5 +47,5 @@ else: ...@@ -47,5 +47,5 @@ else:
if _use_precision: if _use_precision:
number = lambda value: decimal.Decimal(str(value)) number = lambda value: decimal.Decimal(str(value))
else: else:
number = lambda value: value number = lambda value: float(value)
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