CameraVo.java 409 B

12345678910111213141516171819
  1. package min3d.vos;
  2. /**
  3. * Encapsulates camera-related properties, including view frustrum.
  4. */
  5. public class CameraVo
  6. {
  7. public Number3d position = new Number3d(0,1000, 10000); // ... note, not 'managed'
  8. public Number3d target = new Number3d(0,0,0);
  9. public Number3d upAxis = new Number3d(0,1,0);
  10. public FrustumManaged frustum = new FrustumManaged(null);
  11. public CameraVo()
  12. {
  13. }
  14. }