1. 20 Jun, 2012 1 commit
  2. 19 Jun, 2012 12 commits
  3. 27 Apr, 2012 1 commit
    • Lars Kruse's avatar
      fix issue with scientific number formats in GCode · 45749e8b
      Lars Kruse authored
      The "decimal" module can cause the output of values like "0E-12"
      with the "%s" formatting string.
      
      Test case:
         import decimal; print decimal.Decimal("0.0000001")
      => 1E-7
      
      This fix uses a "%.?f" (? = number of digits) format string based
      the number of significant digits as given via "minimum step width"
      in GCode settings.
      45749e8b
  4. 31 Mar, 2012 1 commit
  5. 30 Mar, 2012 2 commits
  6. 26 Mar, 2012 4 commits
  7. 24 Mar, 2012 9 commits
  8. 17 Mar, 2012 2 commits
  9. 16 Mar, 2012 1 commit
  10. 15 Mar, 2012 1 commit
  11. 10 Mar, 2012 3 commits
  12. 09 Mar, 2012 1 commit
    • Whitham D. Reeve II's avatar
      Direction cone speed improvements. · 911d16a4
      Whitham D. Reeve II authored
      This code commits draw_direction_cone_mesh which is an adaptation of draw_direction_cone to generate a mesh of triangles for compression inside a vertex buffer object. The rest of the opengl code in Toolpath has been changed to use this. Only remaining use of old rendering path way is simulation.
      
      Whitham D. Reeve II
      911d16a4
  13. 07 Mar, 2012 2 commits