removing debugging printf
This commit is contained in:
parent
fb0040390c
commit
feef494764
1 changed files with 0 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
package chart
|
package chart
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"image"
|
"image"
|
||||||
"image/png"
|
"image/png"
|
||||||
"io"
|
"io"
|
||||||
|
@ -119,7 +118,6 @@ func (rr *rasterRenderer) FillStroke() {
|
||||||
|
|
||||||
// Circle fully draws a circle at a given point but does not apply the fill or stroke.
|
// Circle fully draws a circle at a given point but does not apply the fill or stroke.
|
||||||
func (rr *rasterRenderer) Circle(radius float64, x, y int) {
|
func (rr *rasterRenderer) Circle(radius float64, x, y int) {
|
||||||
fmt.Printf("RasterRenderer.Circle(%f, %d, %d)\n", radius, x, y)
|
|
||||||
xf := float64(x)
|
xf := float64(x)
|
||||||
yf := float64(y)
|
yf := float64(y)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue