00001 /*======================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : VSG (Jun 2011) 00022 **=======================================================================*/ 00023 #ifndef _MoMeshSurfaceRepresentation_H 00024 #define _MoMeshSurfaceRepresentation_H 00025 00026 #include <MeshVizXLM/mapping/nodes/MoMeshRepresentation.h> 00027 00028 #ifdef _WIN32 00029 #pragma warning(push) 00030 #pragma warning(disable:4251) 00031 #endif 00032 00033 class MdSurfaceMesh; 00034 class MdLineMesh; 00035 class MdPointMesh; 00036 00065 class MESHIVIZDM_API MoMeshSurfaceRepresentation : public MoMeshRepresentation { 00066 00067 SO_NODE_HEADER(MoMeshSurfaceRepresentation) ; 00068 00069 /*----------------------------------------------------------------------------*/ 00070 private: 00071 static void initClass() ; 00072 static void exitClass() ; 00073 00074 private: 00075 MoMeshSurfaceRepresentation() ; 00076 virtual ~MoMeshSurfaceRepresentation() ; 00077 00078 template<typename _MdExtractorT> friend class MdMeshSurfaceRepresentation; 00079 template<typename _MdExtractorT> friend class MdMeshLineRepresentation; 00080 00081 virtual void clear(); 00082 00083 MdSurfaceMesh* m_surface; 00084 MdLineMesh* m_line; 00085 MdPointMesh* m_points; 00086 }; 00087 00088 #ifdef _WIN32 00089 #pragma warning(pop) 00090 #endif 00091 00092 #endif /* _MoMeshSurfaceRepresentation_H */ 00093 00094 00095 00096