Convert a Rcast colour integer to RGBA components.
| 44 | |
| 45 | /// Convert a Rcast colour integer to RGBA components. |
| 46 | inline void rcCol(unsigned int col, U8 &r, U8 &g, U8 &b, U8 &a) |
| 47 | { |
| 48 | r = col % 256; col /= 256; |
| 49 | g = col % 256; col /= 256; |
| 50 | b = col % 256; col /= 256; |
| 51 | a = col % 256; |
| 52 | } |
| 53 | |
| 54 | enum PolyAreas { |
| 55 | GroundArea, |
no outgoing calls
no test coverage detected