From ccd8fcac3d9983546df661087a209cd96cbd2fd6 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sat, 27 Dec 2014 23:29:56 +0900 Subject: [PATCH] Fix comments --- image.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/image.go b/image.go index 8b31cf191..bc972dabc 100644 --- a/image.go +++ b/image.go @@ -148,10 +148,10 @@ func (i *Image) Fill(clr color.Color) (err error) { // After determining parts to draw, this applies the geometry matrix and the color matrix. // // Here are the default values: -// DstParts: (0, 0) - (source width, source height) -// SrcParts: (0, 0) - (source width, source height) (i.e. the whole source image) -// GeometryMatrix: Identity matrix -// ColorMatrix: Identity matrix (that changes no colors) +// Parts: (0, 0) - (source width, source height) to (0, 0) - (source width, source height) +// (i.e. the whole source image) +// GeoM: Identity matrix +// ColorM: Identity matrix (that changes no colors) func (i *Image) DrawImage(image *Image, options *DrawImageOptions) (err error) { return i.drawImage(image.inner, options) }