Back to project page abstract-art.
The source code is released under:
GNU General Public License
If you think the Android project abstract-art 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 net.georgewhiteside.utility; //ww w .j av a2 s . c o m public class Dimension { public int width, height; public Dimension(int width, int height) { this.width = width; this.height = height; } }