FillText fills lines of text in the draw area. pt specifies the location where the text is to be drawn.
(sty TextStyle, pt vg.Point, txt string)
| 629 | // FillText fills lines of text in the draw area. |
| 630 | // pt specifies the location where the text is to be drawn. |
| 631 | func (c *Canvas) FillText(sty TextStyle, pt vg.Point, txt string) { |
| 632 | sty.Handler.Draw(c, txt, sty, pt) |
| 633 | } |
no test coverage detected