Commit bc0d79d5 authored by jean-pierre charras's avatar jean-pierre charras
Browse files

finished Draw functions for aperture macros. Now aperture macros are drawn correctly.

 Known bug: aperture macros having parameters are incorrect: parameters are not transmited correctly. Work still in progress.
parent e0617666
Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
@@ -4,6 +4,14 @@ KiCad ChangeLog 2010
Please add newer entries at the top, list the date and your name with
Please add newer entries at the top, list the date and your name with
email address.
email address.


2010-oct-03, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
++gerbview:
    finished Draw functions for aperture macros.
    Now aperture macros are draww correctly.
    Known bug: aperture macros having parameters are incorrect: parameters are not transmited correctly.
    Work still in progress.

2010-sept-28, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
2010-sept-28, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
================================================================================
++gerbview:
++gerbview:
+352 −135

File changed.

Preview size limit exceeded, changes collapsed.

+31 −8

File changed.

Preview size limit exceeded, changes collapsed.

+23 −18

File changed.

Preview size limit exceeded, changes collapsed.

+2 −0
Original line number Original line Diff line number Diff line
@@ -74,6 +74,8 @@ public:
                                            // 0 for items that do not use DCodes (polygons)
                                            // 0 for items that do not use DCodes (polygons)
                                            // or when unknown and normal values are 10 to 999
                                            // or when unknown and normal values are 10 to 999
                                            // values 0 to 9 can be used for special purposes
                                            // values 0 to 9 can be used for special purposes
    bool    m_ImageNegative;                // true = item in negative image
    bool    m_LayerNegative;                // TRUE = item in negative Layer


public:
public:
    GERBER_DRAW_ITEM( BOARD_ITEM* aParent );
    GERBER_DRAW_ITEM( BOARD_ITEM* aParent );
Loading