12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2013 Alec Jacobson <alecjacobson@gmail.com>
- //
- // This Source Code Form is subject to the terms of the Mozilla Public License
- // v. 2.0. If a copy of the MPL was not distributed with this file, You can
- // obtain one at http://mozilla.org/MPL/2.0/.
- #ifndef IGL_CAMERA_H
- #define IGL_CAMERA_H
- #include "igl_inline.h"
- // Simple Camera class
- namespace igl
- {
- class Camera
- {
- // Public Fields
- public:
- // Rotation as quaternion (0,0,0,1) is identity
- double rotation[4];
- // Translation of origin
- double pan[3];
- // Zoom scale
- double zoom;
- // Perspective angle
- double angle;
- // Public functions
- public:
- Camera();
- // Copy constructor
- //
- // Inputs:
- // that other Camera to be copied
- Camera(const Camera & that);
- ~Camera(){}
- };
- };
- #ifdef IGL_HEADER_ONLY
- # include "Camera.cpp"
- #endif
- #endif
|