From 29208970f0f2c011c0592986d63fa96f8fd9320e Mon Sep 17 00:00:00 2001 From: ganovelli Date: Wed, 23 Nov 2005 14:18:35 +0000 Subject: [PATCH] added access to similarity (just for symmetry with Camera() ) --- vcg/math/shot.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/vcg/math/shot.h b/vcg/math/shot.h index 8a00b56c..727d2840 100644 --- a/vcg/math/shot.h +++ b/vcg/math/shot.h @@ -23,6 +23,11 @@ /**************************************************************************** History $Log: not supported by cvs2svn $ +Revision 1.13 2005/11/23 11:58:52 ganovelli +Empty constructor added, untemplated class Shotf and Shotd added +usage: Shotf myShot; +corrected member access rights + Revision 1.12 2005/07/11 13:12:35 cignoni small gcc-related compiling issues (typenames,ending cr, initialization order) @@ -96,6 +101,9 @@ public: Camera & Camera(){return camera;}; + /// access to similarity + vcg::Similarity > & Similarity(){return similarity;} + /// take the i-th axis of the coordinate system of the camera vcg::Point3 Axis(const int & i)const;