| 9 | ) |
| 10 | |
| 11 | type Polygon struct { |
| 12 | Worker *Worker |
| 13 | Order int |
| 14 | Convex bool |
| 15 | X, Y []float64 |
| 16 | } |
| 17 | |
| 18 | func NewRandomPolygon(worker *Worker, order int, convex bool) *Polygon { |
| 19 | rnd := worker.Rnd |
nothing calls this directly
no outgoing calls
no test coverage detected