1. 23 May, 2013 3 commits
  2. 22 May, 2013 3 commits
  3. 21 May, 2013 2 commits
  4. 20 May, 2013 1 commit
    • Wayne Stambaugh's avatar
      Pcbnew footprint library table work in progress. · c9be8bfd
      Wayne Stambaugh authored
      * Add code for loading, modifying, and saving the global and project
        footprint library tables.
      * Add code to load MODULE objects using the footprint library table to
        the footprint viewer.
      * Add static methods to FP_LIB_TABLE to support loading footprint library
        tables.
      c9be8bfd
  5. 19 May, 2013 1 commit
  6. 18 May, 2013 2 commits
  7. 16 May, 2013 2 commits
  8. 15 May, 2013 1 commit
  9. 14 May, 2013 1 commit
  10. 13 May, 2013 1 commit
  11. 10 May, 2013 2 commits
  12. 09 May, 2013 1 commit
  13. 08 May, 2013 2 commits
    • Wayne Stambaugh's avatar
      Footprint library table work, minor fixes, and code cleaning. · cf86e18f
      Wayne Stambaugh authored
      * Fix a bug when full file name and path are passed to FOOTPRINT_INFO::
        ReadFootprintFiles() which I created in bug fix lp:593989.
      * Fix a wxString debug assertion in EDA_APP::InitEDA_Appl() when the KICAD
        environment variable is defined as an empty string.
      * Add error dialog when libraries cannot be found in system search path
        when loading footprint using the select footprint dialog.
      * Add footprint library name column to the EDA_LIST_DIALOG when selecting
        footprints from the list.
      * Allow reading all columns from the selected row in EDA_LIST_DIALOG.
      * Remove redundant sort from EDA_LIST_DIALOG constructor
      * Add library name member variable and accessors to FOOTPRINT_INFO.
      * Make headers translatable for Eeschema select component from list dialog.
      * Add some helper methods to FPID for identifying the FPID type and validity.
      * Remove a bunch of trailing whitespace and add missing license comments.
      cf86e18f
    • jean-pierre charras's avatar
      More work on CPOLYGONS_LIST class. · 2e6969fe
      jean-pierre charras authored
      2e6969fe
  14. 07 May, 2013 2 commits
  15. 06 May, 2013 3 commits
  16. 05 May, 2013 3 commits
  17. 04 May, 2013 1 commit
  18. 03 May, 2013 2 commits
  19. 02 May, 2013 5 commits
  20. 01 May, 2013 2 commits
    • jean-pierre charras's avatar
      3D viewer: Modify yhe way board items shapes are built: · 4ac7dd58
      jean-pierre charras authored
      * All items shapes  are converted to polygons.
      * Polygons are merged layer by layer (for calculation time reasons,zones are not merged)
      * for copper layers, vias and pads holes are substracted from polygons (but, for calculation time reasons,  not inside zones areas).
      * the look is better, mainly when displaying the copper thickness
      * solder and paste layers are now shown in 3D viewer.
      * the code was seriously cleaned (but still needs to be enhanced).
      * Note this is a work in progress which needs refinements.
      4ac7dd58
    • Lorenzo Marcantonio's avatar
      Angle and distances cleanup (preparing for angles in doubles) · 0e903dba
      Lorenzo Marcantonio authored
      - Removed spurious int casts (these are truncated anyway and will break
        doubles)
      
      - Applied the Distance, GetLineLength, EuclideanNorm, DEG2RAD, RAD2DEG
        ArcTangente and NORMALIZE* functions where possible
      
      - ArcTangente now returns double and handles the 0,0 case like atan2, so
        it's no longer necessary to check for it before calling
      
      - Small functions in trigo moved as inline
      0e903dba