(colors []Color, index int)
| 42 | } |
| 43 | |
| 44 | func SelectColor(colors []Color, index int) Color { |
| 45 | return colors[index%len(colors)] |
| 46 | } |
| 47 | |
| 48 | func SelectStyle(styles []Style, index int) Style { |
| 49 | return styles[index%len(styles)] |
no outgoing calls
no test coverage detected
searching dependent graphs…