comment out test print

Signed-off-by: John Thornton <bjt128@gmail.com>
This commit is contained in:
John Thornton
2015-10-24 07:22:29 -05:00
parent f7ed092e52
commit 7809797daf
3 changed files with 5254 additions and 0 deletions

View File

@ -33,9 +33,11 @@ func main() {
entities := dxfutil.GetEntities(lines)
entities = dxfutil.GetEndPoints(entities)
entities = dxfutil.GetIndex(entities)
/*
for _, e := range entities {
fmt.Printf("%2d %2s %4s Xs %6s Ys %6s Xe %6s Ye %6s\n",
e.Index, e.G, e.G0, e.Xs, e.Ys, e.Xe, e.Ye)
}
*/
dxfutil.GenGcode(entities, iniMap["SAVEAS"])
}