back returns the last point in the contour
()
| 430 | |
| 431 | // back returns the last point in the contour |
| 432 | func (c *contour) back() point { return c.forward[len(c.forward)-1] } |
| 433 | |
| 434 | // extend adds the line l to the contour, updating the ends map. It returns |
| 435 | // a boolean indicating whether the extension was successful. |