From 302e24189db4041c7ec7b1a394fd77d4cb5ce7b7 Mon Sep 17 00:00:00 2001 From: cignoni Date: Fri, 13 Oct 2006 14:11:49 +0000 Subject: [PATCH] first version --- vcg/simplex/faceplus/component_rt.h | 45 +++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 vcg/simplex/faceplus/component_rt.h diff --git a/vcg/simplex/faceplus/component_rt.h b/vcg/simplex/faceplus/component_rt.h new file mode 100644 index 00000000..fb1a449f --- /dev/null +++ b/vcg/simplex/faceplus/component_rt.h @@ -0,0 +1,45 @@ +/**************************************************************************** +* VCGLib o o * +* Visual and Computer Graphics Library o o * +* _ O _ * +* Copyright(C) 2006 \/)\/ * +* Visual Computing Lab /\/| * +* ISTI - Italian National Research Council | * +* \ * +* All rights reserved. * +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +* This program is distributed in the hope that it will be useful, * +* but WITHOUT ANY WARRANTY; without even the implied warranty of * +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) * +* for more details. * +* * +****************************************************************************/ +/**************************************************************************** + History + +$Log: not supported by cvs2svn $ +****************************************************************************/ + +#ifndef __VCG_FACE_PLUS_COMPONENT_RT +#define __VCG_FACE_PLUS_COMPONENT_RT + +#include + +namespace vcg { + namespace face { + +template class RTInfo: public T { +public: + typename T::VertexType::CoordType edge[3]; + Plane3 plane; +}; + + } // end namespace vert +}// end namespace vcg +#endif