| 48 | int int.r(){ return (*this >> 16) & 0xff; }\r\n\ |
| 49 | int int.g(){ return (*this >> 8) & 0xff; }\r\n\ |
| 50 | int int.b(){ return *this & 0xff; }\r\n\ |
| 51 | int int.a(){ return (*this >> 24) & 0xff; }\r\n\ |
| 52 | \r\n\ |
| 53 | // 2D point\r\n\ |
no outgoing calls
no test coverage detected