1
0
mirror of git://projects.qi-hardware.com/cae-tools.git synced 2024-12-22 23:04:16 +02:00

cameo: also connect paths from gnuplot files

We only did this for Gerber.
This commit is contained in:
Werner Almesberger 2011-12-16 04:36:17 -03:00
parent 7354edee2b
commit 90254ef0bc

View File

@ -85,7 +85,7 @@ struct path *gnuplot_read(const char *name, double r_tool_default)
path_add(path, x, y, z); path_add(path, x, y, z);
} }
fclose(file); fclose(file);
return paths; return path_connect(paths);
} }