diff --git a/data.go b/data.go
index 186ee35ea10c71287debbc215bac48269a205251..11c7348cfe01776223a5cb1b357c36fc30613fdb 100644
--- a/data.go
+++ b/data.go
@@ -268,17 +268,3 @@ func (pd *PictureData) Color(at Vec) RGBA {
 	}
 	return ToRGBA(pd.Pix[pd.Index(at)])
 }
-
-// SetColor changes the color located at the given position.
-func (pd *PictureData) SetColor(at Vec, col color.Color) {
-	if !pd.Rect.Contains(at) {
-		return
-	}
-	rgba := ToRGBA(col)
-	pd.Pix[pd.Index(at)] = color.RGBA{
-		R: uint8(rgba.R * 255),
-		G: uint8(rgba.G * 255),
-		B: uint8(rgba.B * 255),
-		A: uint8(rgba.A * 255),
-	}
-}