Edge color specifies which color channels an edge belongs to.
| 7 | |
| 8 | /// Edge color specifies which color channels an edge belongs to. |
| 9 | enum EdgeColor { |
| 10 | BLACK = 0, |
| 11 | RED = 1, |
| 12 | GREEN = 2, |
| 13 | YELLOW = 3, |
| 14 | BLUE = 4, |
| 15 | MAGENTA = 5, |
| 16 | CYAN = 6, |
| 17 | WHITE = 7 |
| 18 | }; |
| 19 | |
| 20 | } |
no outgoing calls
no test coverage detected