Back to project page android-gear.
The source code is released under:
MIT License
If you think the Android project android-gear listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.androidgear.core.graphics; //www. ja v a 2 s . c o m public interface Image { public abstract int width(); public abstract int height(); public abstract void draw(Graphics graphics, float x, float y); public abstract void draw(Graphics graphics, float x, float y, int w, int h); public abstract void draw(Graphics graphics, float dx, float dy, float dw, float dh, float sx, float sy, float sw, float sh); }