diff --git a/graphics.go b/graphics.go index f10c839..0a310ed 100644 --- a/graphics.go +++ b/graphics.go @@ -248,6 +248,8 @@ func (p *Polygon) Color() NRGBA { // count. // // This method is more effective, than creating a new Polygon with the given points. +// +// However, it is less expensive than using a transform on a Target. func (p *Polygon) SetPoints(points ...Vec) { p.data.resize(len(points)) for i, pt := range points {