Commit 9fdf32a7 authored by sumpfralle's avatar sumpfralle

increase axis size slightly (better for contour models)


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@521 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 2367b36c
...@@ -590,7 +590,7 @@ def draw_axes(settings): ...@@ -590,7 +590,7 @@ def draw_axes(settings):
size_x = abs(settings.get("maxx")) size_x = abs(settings.get("maxx"))
size_y = abs(settings.get("maxy")) size_y = abs(settings.get("maxy"))
size_z = abs(settings.get("maxz")) size_z = abs(settings.get("maxz"))
size = 1.5 * max(max(size_x, size_y), size_z) size = 1.7 * max(size_x, size_y, size_z)
# the divider is just based on playing with numbers # the divider is just based on playing with numbers
scale = size/1500.0 scale = size/1500.0
string_distance = 1.1 * size string_distance = 1.1 * size
......
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