Open Inventor Release 2024.1.0
 
Loading...
Searching...
No Matches
MxTriangleCellExtract.h
Go to the documentation of this file.
1/*=======================================================================
2 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
3 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
4 *** ***
5 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
6 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
7 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
8 *** ***
9 *** RESTRICTED RIGHTS LEGEND ***
10 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
11 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
12 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
13 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
14 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
15 *** ***
16 *** COPYRIGHT (C) 1996-2017 BY FEI S.A.S, ***
17 *** BORDEAUX, FRANCE ***
18 *** ALL RIGHTS RESERVED ***
19**=======================================================================*/
20/*=======================================================================
21** Author : VSG (MMM YYYY)
22**=======================================================================*/
23#ifndef _MxTriangleCellExtract_h
24#define _MxTriangleCellExtract_h
25
27
28#include <Inventor/STL/vector>
29#include <Inventor/STL/utility>
30
31class MiSurfaceCell;
32
57{
58public:
59
73 static MbVec3d getIsoParametricCoord(const MiGeometryI& meshGeometry, const MiSurfaceCell* triangleCell, const MbVec3d &point);
74
80 static MbVec3d getIsoParametricCoord(size_t nodeIndex);
81
101 static void getWeight(const MiGeometryI& meshGeometry, const MiSurfaceCell* triangleCell, const MbVec3d &point, std::vector<double>& weights)
102 {
103 getWeight(getIsoParametricCoord(meshGeometry,triangleCell,point),weights);
104 }
105
118 static void getWeight(const MbVec3d &ipcoord, std::vector<double>& weights)
119 {
120 weights[1] = ipcoord[0];
121 weights[2] = ipcoord[1];
122 weights[0] = 1.0 - weights[1] - weights[2];
123 }
124
138 static bool isPointInsideCell(const MiGeometryI& meshGeometry, const MiSurfaceCell* triangleCell, const MbVec3d &point, std::vector<double>& weights)
139 {
140 getWeight(getIsoParametricCoord(meshGeometry,triangleCell,point),weights);
141 return ( -1.E-5 < weights[0] && weights[0] < 1 + 1.E-5 &&
142 -1.E-5 < weights[1] && weights[1] < 1 + 1.E-5 &&
143 -1.E-5 < weights[2] && weights[2] < 1 + 1.E-5);
144 }
145
149 static double getLongestEdgeLength(const MiGeometryI& meshGeometry, const MiSurfaceCell* cell);
150
154 static double getShortestEdgeLength(const MiGeometryI& meshGeometry, const MiSurfaceCell* cell);
155
156private:
157
158 static double s_nodesIsoParametricCoords[3][3];
159};
160
161#endif
162
static void getWeight(const MiGeometryI &meshGeometry, const MiVolumeCell *hexahedronCell, const MbVec3d &point, std::vector< double > &weights)
Gets the weights of a point in a cell.
static MbVec3d getIsoParametricCoord(size_t nodeIndex)
<a href="IconLegend.html"><img src="extMV.gif" alt="MeshViz" border="0"></a> Utility class for quadra...
#define MESHVIZXLM_EXTR_API
<a href="IconLegend.html"><img src="extMV.gif" alt="MeshViz" border="0"></a> Generic geometry interfa...
Definition MiGeometryI.h:39
<a href="IconLegend.html"><img src="extMV.gif" alt="MeshViz" border="0"></a> Defines an abstract cell...
<a href="IconLegend.html"><img src="extMV.gif" alt="MeshViz" border="0"></a> Utility class for triang...
static void getWeight(const MiGeometryI &meshGeometry, const MiSurfaceCell *triangleCell, const MbVec3d &point, std::vector< double > &weights)
Gets the weights in the given cell of the given point.
static double getLongestEdgeLength(const MiGeometryI &meshGeometry, const MiSurfaceCell *cell)
Gets the longest edge of a triangle cell.
static MbVec3d getIsoParametricCoord(const MiGeometryI &meshGeometry, const MiSurfaceCell *triangleCell, const MbVec3d &point)
Computes the iso parametric coordinates of the given point in the given cell with the given geometry.
static bool isPointInsideCell(const MiGeometryI &meshGeometry, const MiSurfaceCell *triangleCell, const MbVec3d &point, std::vector< double > &weights)
Checks if a point is inside or outside a triangle cell.
static void getWeight(const MbVec3d &ipcoord, std::vector< double > &weights)
Gets the weights of a point defined by its iso parametric coordinates.
static double getShortestEdgeLength(const MiGeometryI &meshGeometry, const MiSurfaceCell *cell)
Gets the shortest edge of a triangle cell.
static MbVec3d getIsoParametricCoord(size_t nodeIndex)
Returns the iso parametric coordinates of one of the 3 nodes of a triangle cell.