Commit 83ad94bf authored by sumpfralle's avatar sumpfralle

added the svn:eol-style attribute (native) to all python scripts and xml files


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@629 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 0a2b2fad
# keysyms does not seem to be recognized by pyinstaller # keysyms does not seem to be recognized by pyinstaller
# There will be exceptions after any keypress without this line. # There will be exceptions after any keypress without this line.
hiddenimports = ["gtk.keysyms"] hiddenimports = ["gtk.keysyms"]
\ No newline at end of file
...@@ -6322,7 +6322,7 @@ Any selected group of dimensions will be scaled accordingly.</property> ...@@ -6322,7 +6322,7 @@ Any selected group of dimensions will be scaled accordingly.</property>
<property name="step_increment">1</property> <property name="step_increment">1</property>
</object> </object>
<object class="GtkAdjustment" id="SupportGridLength"> <object class="GtkAdjustment" id="SupportGridLength">
<property name="lower">0.01</property> <property name="lower">-100</property>
<property name="upper">100</property> <property name="upper">100</property>
<property name="step_increment">1</property> <property name="step_increment">1</property>
</object> </object>
......
This diff is collapsed.
This diff is collapsed.
...@@ -206,7 +206,10 @@ def get_support_distributed(model, z_plane, average_distance, ...@@ -206,7 +206,10 @@ def get_support_distributed(model, z_plane, average_distance,
else: else:
# position1 is OK # position1 is OK
position = position1 position = position1
# append the original position (ignoring z_plane)
bridge_positions.append(position) bridge_positions.append(position)
# move the point to z_plane
position = Point(position.x, position.y, z_plane)
bridge_dir = lines[line_index].dir.cross( bridge_dir = lines[line_index].dir.cross(
polygon.plane.n).normalized().mul(length) polygon.plane.n).normalized().mul(length)
_add_cuboid_to_model(result, position, bridge_dir, height, thickness) _add_cuboid_to_model(result, position, bridge_dir, height, thickness)
......
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