Commit 11016c42 authored by sumpfralle's avatar sumpfralle

fixed code according to a recent interface change


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@650 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 45123022
...@@ -28,10 +28,8 @@ from pycam.Geometry.utils import number ...@@ -28,10 +28,8 @@ from pycam.Geometry.utils import number
def _get_triangles_for_face(pts): def _get_triangles_for_face(pts):
t1 = Triangle(pts[0], pts[1], pts[2], Line(pts[0], pts[1]), t1 = Triangle(pts[0], pts[1], pts[2])
Line(pts[1], pts[2]), Line(pts[2], pts[0])) t2 = Triangle(pts[2], pts[3], pts[0])
t2 = Triangle(pts[2], pts[3], pts[0], Line(pts[2], pts[3]),
Line(pts[3], pts[0]), Line(pts[0], pts[2]))
return (t1, t2) return (t1, t2)
def _add_cuboid_to_model(model, start, direction, height, width): def _add_cuboid_to_model(model, start, direction, height, width):
......
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