disable PathLogger

This commit is contained in:
Stani 2015-06-27 16:51:37 +02:00
parent 5d1b0f3315
commit d140c26465
1 changed files with 2 additions and 3 deletions

View File

@ -159,9 +159,8 @@ var logger = log.New(os.Stdout, "", log.Lshortfile)
// draw fills and/or strokes paths
func (gc *GraphicContext) draw(style string, paths ...*draw2d.PathStorage) {
paths = append(paths, gc.Current.Path)
pathConverter := NewPathConverter(
NewVertexMatrixTransform(gc.Current.Tr,
NewPathLogger(logger, gc.pdf)))
pathConverter := NewPathConverter(NewVertexMatrixTransform(gc.Current.Tr, gc.pdf))
// pathConverter := NewPathConverter(NewVertexMatrixTransform(gc.Current.Tr,NewPathLogger(logger, gc.pdf)))
pathConverter.Convert(paths...)
if gc.Current.FillRule.UseNonZeroWinding() {
style += "*"