From fb0040390c1e2e9b8f351382bd320170fff8e25f Mon Sep 17 00:00:00 2001 From: Will Charczuk Date: Sat, 4 Mar 2017 17:50:57 -0800 Subject: [PATCH] updating comment --- raster_renderer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raster_renderer.go b/raster_renderer.go index 99119d2..9ec7762 100644 --- a/raster_renderer.go +++ b/raster_renderer.go @@ -117,7 +117,7 @@ func (rr *rasterRenderer) FillStroke() { rr.gc.FillStroke() } -// Circle fully draws and strokes a circle at a given point. +// 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) { fmt.Printf("RasterRenderer.Circle(%f, %d, %d)\n", radius, x, y) xf := float64(x)