From 946ae834b80fb52ffa74181ecc50a3f0282ea85c Mon Sep 17 00:00:00 2001 From: cignoni Date: Wed, 11 Mar 2009 09:32:12 +0000 Subject: [PATCH] Changed the include guard. Added comment to remember that the View class is used only by the trackball --- wrap/gui/view.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/wrap/gui/view.h b/wrap/gui/view.h index 5574d90a..4381a17f 100644 --- a/wrap/gui/view.h +++ b/wrap/gui/view.h @@ -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 View {