If you think the Android project non listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package non;
//fromwww.java2s.compublicclass Quad {
publicint sx, sy, sw, sh, w, h;
public Quad (int x1, int y1, int x2, int y2, int x3, int y3) {
sx = x1;
sy = y1;
sw = x2;
sh = y2;
w = x3;
h = y3;
}
}