Index: trunk/src_plugins/io_eagle/read.c =================================================================== --- trunk/src_plugins/io_eagle/read.c (revision 21671) +++ trunk/src_plugins/io_eagle/read.c (revision 21672) @@ -1047,7 +1047,7 @@ } poly = pcb_poly_new(ly, 0, pcb_flag_make(PCB_FLAG_CLEARPOLY)); - +TODO("TODO need to check XML never defines a polygon outline with arcs or curves") for(n = CHILDREN(subtree); n != NULL; n = NEXT(n)) { if (STRCMP(NODENAME(n), "vertex") == 0) { pcb_coord_t x, y; @@ -1061,6 +1061,7 @@ size_bump(st, x, y); break; } +TODO("TODO need to check if binary format is sometimes using arcs or curves for polygn outlines") TODO("TODO can remove the following if dealt with in post processor for binary tree") } else if (STRCMP(NODENAME(n), "wire") == 0) { /* binary format vertices it seems */ eagle_read_poly_corner(st, n, poly, "linetype_0_x1", "linetype_0_y1", loc);