Back to project page min3d.
The source code is released under:
MIT License
If you think the Android project min3d 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.min3d.lib.vos; // w w w. java 2s . com /** * Simple VO with three properties representing vertex indicies. * Is not necessary for functioning of engine, just a convenience. */ public class Face { public short a; public short b; public short c; public Face(short $a, short $b, short $c) { a = $a; b = $b; c = $c; } /** * Convenience method to cast int arguments to short's */ public Face(int $a, int $b, int $c) { a = (short) $a; b = (short) $b; c = (short) $c; } }