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 : Martial Bonaventure (October 2009) 00022 **=======================================================================*/ 00023 #ifndef _MiClipLineExtractIj_h 00024 #define _MiClipLineExtractIj_h 00025 00026 #include <MeshVizXLM/extractors/MiBaseExtractor.h> 00027 #include <MeshVizXLM/mesh/data/MiDataSetIj.h> 00028 #include <MeshVizXLM/extrmesh/data/MeXDataSetI.h> 00029 #include <MeshVizXLM/extrmesh/MeXLineMeshUnstructured.h> 00030 00031 class MiCellFilterIj; 00032 class MiSurfaceMeshRegular; 00033 class MiSurfaceMeshCurvilinear; 00034 class MiSurfaceMeshRectilinear; 00035 class MiTessellator; 00036 00046 class MESHIVIZ_API MiClipLineExtractIj : virtual public MiBaseExtractor 00047 { 00048 public: 00049 virtual ~MiClipLineExtractIj() {} 00050 00052 00055 static MiClipLineExtractIj* getNewInstance(const MiSurfaceMeshRegular& mesh, bool parallel = true, MiTessellator* tessellator=NULL); 00056 static MiClipLineExtractIj* getNewInstance(const MiSurfaceMeshCurvilinear& mesh, bool parallel = true, MiTessellator* tessellator=NULL); 00057 static MiClipLineExtractIj* getNewInstance(const MiSurfaceMeshRectilinear& mesh, bool parallel = true, MiTessellator* tessellator=NULL); 00059 00069 virtual const MeXLineMeshUnstructured& extractLine(const MbVec3<double>& normal, double distance, const MiCellFilterIj* cellFilter=NULL) = 0; 00070 00078 virtual const MeXScalardSetI& extractScalarSet(const MiScalardSetIj& inputSet) = 0; 00079 00087 virtual const MeXVec3dSetI& extractVec3Set(const MiVec3dSetIj& inputSet) = 0; 00088 00092 virtual const MeXLineMeshUnstructured& getExtract() const = 0; 00093 00094 }; 00095 00096 #endif 00097 00098 00099