Add adds an entry to the legend with the given name. The entry's thumbnail is drawn as the composite of all of the thumbnails.
(name string, thumbs ...Thumbnailer)
| 185 | // The entry's thumbnail is drawn as the composite of all of the |
| 186 | // thumbnails. |
| 187 | func (l *Legend) Add(name string, thumbs ...Thumbnailer) { |
| 188 | l.entries = append(l.entries, legendEntry{text: name, thumbs: thumbs}) |
| 189 | } |
no outgoing calls