Commit 374e0f95 authored by sumpfralle's avatar sumpfralle

allow to use simulation mode, even if ODE is currently not enabled (but it...

allow to use simulation mode, even if ODE is currently not enabled (but it must be available - of course)
updated changelog for the simulation mode


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@315 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent e32de58c
Version 0.2.4 - UNRELEASED Version 0.2.4 - UNRELEASED
* added a simple simulation mode for visualizing the material penetration of a toolpath
* join tangential moves (removes the inner points in a colinear set of adjacent path points) * join tangential moves (removes the inner points in a colinear set of adjacent path points)
* fixed careless import of Tkinter * fixed careless import of Tkinter
* fixed typo that breaks PyCAM for Python 2.6 * fixed typo that breaks PyCAM for Python 2.6
......
...@@ -1635,7 +1635,7 @@ class ProjectGui: ...@@ -1635,7 +1635,7 @@ class ProjectGui:
self.gui.get_object("toolpath_up").set_sensitive((not new_index is None) and (new_index > 0)) self.gui.get_object("toolpath_up").set_sensitive((not new_index is None) and (new_index > 0))
self.gui.get_object("toolpath_delete").set_sensitive(not new_index is None) self.gui.get_object("toolpath_delete").set_sensitive(not new_index is None)
self.gui.get_object("toolpath_down").set_sensitive((not new_index is None) and (new_index + 1 < len(self.toolpath))) self.gui.get_object("toolpath_down").set_sensitive((not new_index is None) and (new_index + 1 < len(self.toolpath)))
self.gui.get_object("toolpath_simulate").set_sensitive((not new_index is None) and (self.settings.get("enable_ode"))) self.gui.get_object("toolpath_simulate").set_sensitive((not new_index is None) and ode_objects.is_ode_available())
@gui_activity_guard @gui_activity_guard
def save_task_settings_file(self, widget=None, filename=None): def save_task_settings_file(self, widget=None, filename=None):
......
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