(Texture image, float x, float y, float w, float h, float originX, float originY, float rotation)
| 1446 | } |
| 1447 | |
| 1448 | public void drawRotatedImage(Texture image, float x, float y, float w, float h, float originX, float originY, float rotation) { |
| 1449 | drawRotatedImage(image, x, y, w, h, originX, originY, 0, 0, image.getWidth(), image.getHeight(), rotation); |
| 1450 | } |
| 1451 | |
| 1452 | public void drawRotatedImage(TextureRegion image, float x, float y, float w, float h, float originX, float originY, float rotation) { |
| 1453 | drawRotatedImage(image.getTexture(), x, y, w, h, originX, originY, image.getRegionX(), image.getRegionY(), image.getRegionWidth(), image.getRegionHeight(), rotation); |
no test coverage detected