| 571 | } |
| 572 | |
| 573 | void PiuScroller_scrollTo(xsMachine* the) |
| 574 | { |
| 575 | PiuScroller* self = PIU(Scroller, xsThis); |
| 576 | PiuCoordinate x = xsToPiuCoordinate(xsArg(0)); |
| 577 | PiuCoordinate y = xsToPiuCoordinate(xsArg(1)); |
| 578 | PiuScrollerScrollBy(self, x - (*self)->delta.x, y - (*self)->delta.y); |
| 579 | } |
| 580 | |
| 581 | |
| 582 |
nothing calls this directly
no test coverage detected