diff --git a/graphics.go b/graphics.go index f10c839a9b40747a7912185f136f4000ff8e7798..0a310ed3c07cba8aa15270f065d56f79ebf9d3eb 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 {