| 597 | } |
| 598 | |
| 599 | void xs_poco_origin(xsMachine *the) |
| 600 | { |
| 601 | Poco poco = xsmcGetHostDataPoco(xsThis); |
| 602 | int argc = xsmcArgc; |
| 603 | |
| 604 | if (argc) { |
| 605 | PocoCoordinate x, y; |
| 606 | |
| 607 | x = (PocoCoordinate)xsmcToInteger(xsArg(0)); |
| 608 | y = (PocoCoordinate)xsmcToInteger(xsArg(1)); |
| 609 | PocoOriginPush(poco, x, y); |
| 610 | } |
| 611 | else |
| 612 | PocoOriginPop(poco); |
| 613 | } |
| 614 | |
| 615 | void xs_poco_fillRectangle(xsMachine *the) |
| 616 | { |
nothing calls this directly
no test coverage detected