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; /*from w w w.j a v a2s . c om*/ /** * Container holding VO's of vertex-related information. * Not required for operation of framework, but may be helpful as a convenience. */ public class Vertex3d { public Number3d position = new Number3d(); public Uv uv; public Number3d normal; public Color4 color; public Vertex3d() { } }