Move toolpaths preview to the plater dialog

This commit is contained in:
Alessandro Ranellucci 2014-11-30 20:18:09 +01:00
parent 98cb9f0e18
commit e8f242ee3f
5 changed files with 83 additions and 55 deletions

View file

@ -156,6 +156,8 @@ _constant()
bool invalidate_all_steps();
bool step_done(PrintStep step)
%code%{ RETVAL = THIS->state.is_done(step); %};
bool object_step_done(PrintObjectStep step)
%code%{ RETVAL = THIS->step_done(step); %};
void set_step_done(PrintStep step)
%code%{ THIS->state.set_done(step); %};
void set_step_started(PrintStep step)