1 /*****************************************************************************
2  * DynaMechs: A Multibody Dynamic Simulation Library
3  *
4  * Copyright (C) 1994-2001  Scott McMillan   All Rights Reserved.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the Free
18  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  *****************************************************************************
20  *     File: dmGLPolarCamera_zup.hpp
21  *   Author: Scott McMillan
22  *  Created: 1998/05/01
23  *  Summary:
24  *****************************************************************************/
25 
26 #ifndef _DMGL_POLAR_CAMERA_ZUP_HPP
27 #define _DMGL_POLAR_CAMERA_ZUP_HPP
28 
29 #include <dmGL.h>
30 #include <dmGLMouse.hpp>
31 #include <dmGLPolarCamera.hpp>
32 
33 class DMGL_DLL_API dmGLPolarCamera_zup : public dmGLPolarCamera
34 {
35 public:
36    dmGLPolarCamera_zup();
~dmGLPolarCamera_zup()37    virtual ~dmGLPolarCamera_zup() {};
38 
39    virtual void spinScene(int delta[2], int button_flags);
40    virtual void applyView();
41 
42 private:
43    dmGLPolarCamera_zup(const dmGLPolarCamera_zup &);
44 };
45 
46 #endif
47