1. 19 Jul, 2012 2 commits
  2. 03 Jul, 2012 2 commits
  3. 02 Jul, 2012 3 commits
  4. 24 Jun, 2012 4 commits
  5. 22 Jun, 2012 11 commits
  6. 21 Jun, 2012 2 commits
    • Lars Kruse's avatar
      use ParameterGroup for different toolpath processor settings · 574c1a6f
      Lars Kruse authored
      * ToolpathProcessors now handles different kinds of tasks (Milling, Cutting, ...)
      * all settings in GCodeParameters are moved to the proper ParameterGroup
      * for now we ignore the PostProcessors (different GCode dialects)
      * show/hide does not work currently for "spindle_enable"
      * settings are currently not applied - just the UI works
      * still no GCode export
      574c1a6f
    • Lars Kruse's avatar
      small fixes · ce73e44b
      Lars Kruse authored
      * proper teardown
      * selective show for input controls
      * use ".get_widget()" instead of the internal ".widget" property
      ce73e44b
  7. 20 Jun, 2012 6 commits
    • Lars Kruse's avatar
      code deduplication · feb4a796
      Lars Kruse authored
      Use a separate function (get_non_conflicting_name) for determining the
      name of new objects (models, processes, bounds, tasks and toolpaths).
      feb4a796
    • Lars Kruse's avatar
      adapt other plugins to the recent changes of the Toolpaths plugin · 488f60c9
      Lars Kruse authored
      * TaskTypeMilling returns a tuple of (moves, parameters) - instead of a
        complete Toolpath instance
      * ToolpathCrop uses the Crop filter instead of the object methods for cropping
      * ToolpathGrid uses the Copy filter instead of just calling "list(..)"
      * ToolpathCrop and ToolpathGrid use "add_new" instead of "append" for new
        Toolpaths
      488f60c9
    • Lars Kruse's avatar
      turn toolpath objects into children of ObjectWithAttributes · 02f33aa7
      Lars Kruse authored
      * unify the handling of models, tools, processes, tasks and (finally) toolpaths
      * this required a change of the interfaces of
        pycam.Plugins.ObjectWithAttributes and pycam.Toolpath.Toolpath
        (use only named parameters - otherwise multiple inheritence fails)
      * turn Toolpath.path into a property - now we can detect changes and clear the
        cache
      * remove the Toolpath methods copy/crop/get_cropped_copy - now you can
        use the filter instead:
          toolpath | pycam.Toolpath.Filters.Crop(polygons)
      * simplified the toolpath plugin - now the implementation is similar to
        models/tools/processes/tasks (no more information storage in gtk models)
      02f33aa7
    • Lars Kruse's avatar
      minor style improvements · 9ad232c1
      Lars Kruse authored
      9ad232c1
    • Lars Kruse's avatar
      add two more simple toolpath filters (Copy, MovesOnly) · 487c9304
      Lars Kruse authored
      * MovesOnly: useful for determining if a toolpath is empty/useless
      * Copy: just hide the interal structure of a toolpath (tuple/list)
      487c9304
    • Lars Kruse's avatar
  8. 19 Jun, 2012 10 commits