Pop restores the context saved by the corresponding call to Push().
()
| 90 | // Pop restores the context saved by the |
| 91 | // corresponding call to Push(). |
| 92 | func (tee teeCanvas) Pop() { |
| 93 | for _, c := range tee.cs { |
| 94 | c.Pop() |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | // Stroke strokes the given path. |
| 99 | func (tee teeCanvas) Stroke(p Path) { |