Commit 847b9ce4 authored by sumpfralle's avatar sumpfralle

fixed broken "y" direction for DropCutter


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@510 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 3297bb5e
...@@ -95,7 +95,7 @@ class DropCutter: ...@@ -95,7 +95,7 @@ class DropCutter:
else: else:
# first y, then x # first y, then x
for y in y_steps: for y in y_steps:
grid.append(zip(x_steps, [y] * (len(y_steps) + 1))) grid.append(zip(x_steps, [y] * (len(x_steps) + 1)))
dim_attrs = ["y", "x"] dim_attrs = ["y", "x"]
num_of_lines = len(grid) + 1 num_of_lines = len(grid) + 1
......
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