Within reports whether the point is contained within the given container.
(c Container)
| 163 | |
| 164 | // Within reports whether the point is contained within the given container. |
| 165 | func (p Point) Within(c Container) bool { |
| 166 | return c.Contains(p) |
| 167 | } |
| 168 | |
| 169 | // Set sets the matrix to the given float slice and returns the matrix. The float |
| 170 | // slice must have at least 9 elements. If the float slie contains more than 9 elements, |