Changed the include guard. Added comment to remember that the View class is used only by the trackball

This commit is contained in:
Paolo Cignoni 2009-03-11 09:32:12 +00:00
parent 90d7a087bc
commit 946ae834b8
1 changed files with 5 additions and 2 deletions

View File

@ -70,8 +70,8 @@ Adding copyright.
****************************************************************************/
#ifndef VCG_CAMERA_H
#define VCG_CAMERA_H
#ifndef __VCGLIB_WRAP_GUI_VIEW_H
#define __VCGLIB_WRAP_GUI_VIEW_H
/**********************
WARNING
@ -101,6 +101,9 @@ namespace vcg {
This class represent the viewing parameters under opengl.
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.
Note: mainly it is used only by the TrackBall.
*/
template <class T> class View {