disable PathLogger
This commit is contained in:
parent
5d1b0f3315
commit
d140c26465
1 changed files with 2 additions and 3 deletions
|
@ -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 += "*"
|
||||
|
|
Loading…
Reference in a new issue