Changed the include guard. Added comment to remember that the View class is used only by the trackball
This commit is contained in:
parent
90d7a087bc
commit
946ae834b8
|
|
@ -70,8 +70,8 @@ Adding copyright.
|
||||||
|
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#ifndef VCG_CAMERA_H
|
#ifndef __VCGLIB_WRAP_GUI_VIEW_H
|
||||||
#define VCG_CAMERA_H
|
#define __VCGLIB_WRAP_GUI_VIEW_H
|
||||||
|
|
||||||
/**********************
|
/**********************
|
||||||
WARNING
|
WARNING
|
||||||
|
|
@ -101,6 +101,9 @@ namespace vcg {
|
||||||
This class represent the viewing parameters under opengl.
|
This class represent the viewing parameters under opengl.
|
||||||
Mainly it stores the projection and modelview matrix and the viewport
|
Mainly it stores the projection and modelview matrix and the viewport
|
||||||
and it is used to simply project back and forth points, computing line of sight, planes etc.
|
and it is used to simply project back and forth points, computing line of sight, planes etc.
|
||||||
|
|
||||||
|
Note: mainly it is used only by the TrackBall.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
template <class T> class View {
|
template <class T> class View {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue