A Canvas is a vector graphics canvas along with an associated Rectangle defining a section of the canvas to which drawing should take place.
| 55 | // an associated Rectangle defining a section of the canvas |
| 56 | // to which drawing should take place. |
| 57 | type Canvas struct { |
| 58 | vg.Canvas |
| 59 | vg.Rectangle |
| 60 | } |
| 61 | |
| 62 | // XAlignment specifies text alignment in the X direction. Three preset |
| 63 | // options are available, but an arbitrary alignment |
nothing calls this directly
no outgoing calls
no test coverage detected