Update README.md

This commit is contained in:
Michael Fogleman 2016-02-21 15:45:28 -05:00
parent 6dd1c19629
commit add21769e5

View File

@ -111,6 +111,15 @@ RotateAbout(angle, x, y float64)
ShearAbout(sx, sy, x, y float64)
TransformPoint(x, y float64) (tx, ty float64)
InvertY()
```
Note: transforms do not currently affect `DrawImage` or `DrawString`.
## Stack Functions
Save and restore the state of the context. These can be nested.
```go
Push()
Pop()
```