Merge pull request #1015 from mermerico/master

Improved DXF output compatibility
master
Marius Kintel 2014-11-14 09:58:59 -05:00
commit c16284abca
1 changed files with 2 additions and 2 deletions

View File

@ -468,10 +468,10 @@ void export_dxf(const Polygon2d &poly, std::ostream &output)
<< "0\n"
<< " 10\n"
<< x1 << "\n"
<< " 11\n"
<< x2 << "\n"
<< " 20\n"
<< y1 << "\n"
<< " 11\n"
<< x2 << "\n"
<< " 21\n"
<< y2 << "\n";
}