From cafc2b6a24c0a27682bb078215efc1a02c3728b5 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Tue, 27 Mar 2012 20:52:48 +1100 Subject: [PATCH] doc: use relative links in draw package article R=golang-dev, r CC=golang-dev https://golang.org/cl/5924051 --- doc/articles/image_draw.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/articles/image_draw.html b/doc/articles/image_draw.html index b1adbc53abf..ba735ad2b4e 100644 --- a/doc/articles/image_draw.html +++ b/doc/articles/image_draw.html @@ -4,7 +4,7 @@ }-->

-Package image/draw defines +Package image/draw defines only one operation: drawing a source image onto a destination image, through an optional mask image. This one operation is surprisingly versatile and can perform a number of common image @@ -64,10 +64,10 @@ respective co-ordinate space.

-The DrawMask +The DrawMask function takes seven arguments, but an explicit mask and mask-point are usually unnecessary, so the -Draw function takes five: +Draw function takes five:

@@ -79,7 +79,7 @@ func DrawMask(dst Image, r image.Rectangle, src image.Image, sp image.Point,
 
 

The destination image must be mutable, so the image/draw package -defines a draw.Image +defines a draw.Image interface which has a Set method.