kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #03032
Re-add possibility to load components with bezier curves
-
To:
kicad-devel@xxxxxxxxxxxxxxx
-
From:
"emmedics4" <marco.serantoni@...>
-
Date:
Thu, 27 Aug 2009 17:52:39 -0000
-
User-agent:
eGroups-EW/0.82
Seems that the possibility to add libraries that contains bezier curves waslost in the commits.
Under the change to reenable them.
Index: class_libentry.cpp
===================================================================
--- class_libentry.cpp (revision 1942)
+++ class_libentry.cpp (working copy)
@@ -517,6 +517,10 @@
newEntry = ( LibEDA_BaseStruct* ) new LibDrawPolyline(this);
break;
+ case 'B': /* Bezier Curves */
+ newEntry = ( LibEDA_BaseStruct* ) new LibDrawBezier(this);
+ break;
+
default:
errorMsg.Printf( _( "undefined DRAW command %c" ), line[0] );
m_Drawings = headEntry;