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.ja va2s .co m*/ /** * Encapsulates camera-related properties, including view frustrum. */ public class CameraVo { public Number3d position = new Number3d(0,0, 5); // ... note, not 'managed' public Number3d target = new Number3d(0,0,0); public Number3d upAxis = new Number3d(0,1,0); public FrustumManaged frustum = new FrustumManaged(null); public CameraVo() { } }