2
0

EdgeColor.h 243 B

123456789101112131415161718
  1. #pragma once
  2. namespace msdfgen {
  3. /// Edge color specifies which color channels an edge belongs to.
  4. enum EdgeColor {
  5. BLACK = 0,
  6. RED = 1,
  7. GREEN = 2,
  8. YELLOW = 3,
  9. BLUE = 4,
  10. MAGENTA = 5,
  11. CYAN = 6,
  12. WHITE = 7
  13. };
  14. }