| 423 | } |
| 424 | |
| 425 | void PiuSVGImage_rotate(xsMachine* the) |
| 426 | { |
| 427 | PiuSVGImage* self = PIU(SVGImage, xsThis); |
| 428 | xsIntegerValue c = xsToInteger(xsArgc); |
| 429 | (*self)->r = (c > 0) ? xsToNumber(xsArg(0)) : 0; |
| 430 | (*self)->transforming = 1; |
| 431 | PiuSVGImageInvalidate(self, NULL); |
| 432 | } |
| 433 | |
| 434 | void PiuSVGImage_get_r(xsMachine* the) |
| 435 | { |
nothing calls this directly
no test coverage detected