Open Inventor Release 2024.1.1
 
Loading...
Searching...
No Matches
MiTopologyIjk.h
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-2023 BY FEI S.A.S, ***
17 *** BORDEAUX, FRANCE ***
18 *** ALL RIGHTS RESERVED ***
19**=======================================================================*/
20/*=======================================================================
21** Author : VSG (MMM YYYY)
22**=======================================================================*/
23#ifndef _MITOPOLOGYIJK_H
24#define _MITOPOLOGYIJK_H
25
26#include <MeshVizXLM/mesh/topology/MiTopology.h>
27
28#include <Inventor/STL/sstream>
29
30//-----------------------------------------------------------------------------
47class MESHVIZXLM_EXTR_API MiTopologyIjk : virtual public MiTopology
48{
49public:
50
55 virtual size_t getNumCellsI() const = 0;
56
61 virtual size_t getNumCellsJ() const = 0;
62
67 virtual size_t getNumCellsK() const = 0;
68
77 virtual bool isDead(size_t SO_UNUSED_PARAM(i), size_t SO_UNUSED_PARAM(j), size_t SO_UNUSED_PARAM(k)) const { return false; }
78
79private:protected:
83 virtual std::ostream& toStream(std::ostream& s) const
84 {
85 s << "#mesh topology Ijk" << std::endl;
86 s << "#numCellsI" << std::endl;
87 s << getNumCellsI() << std::endl;
88 s << "#numCellsJ" << std::endl;
89 s << getNumCellsJ() << std::endl;
90 s << "#numCellsK" << std::endl;
91 s << getNumCellsK() << std::endl;
92 s << "#hasDeadCells" << std::endl;
93 s << hasDeadCells() << std::endl;
94 if (hasDeadCells())
95 {
96 s << "#deadCells:" << std::endl;
97 for (size_t i=0; i<getNumCellsI(); i++)
98 {
99 for (size_t j=0; j<getNumCellsJ(); j++)
100 {
101 for (size_t k=0; k<getNumCellsK(); k++)
102 {
103 if (isDead(i,j,k))
104 {
105 s << "#deadCell(" << i << "," << j << "," << k << ")" << std::endl;
106 }
107 }
108 }
109 }
110 }
111 return s;
112 }
113
114};
115
116
117#endif
118
119
<a href="IconLegend.html"><img src="extMV.gif" alt="MeshViz" border="0"></a> List of cells interface.
Definition MiTopology.h:45
virtual bool hasDeadCells() const
Returns true if the topology contains dead cells.
Definition MiTopology.h:62
<a href="IconLegend.html"><img src="extMV.gif" alt="MeshViz" border="0"></a> List of volume cells int...
virtual std::ostream & toStream(std::ostream &s) const
Performs an output operation on a stream which is returned afterward.
virtual size_t getNumCellsJ() const =0
Returns the number of cells on the second logical axis.
virtual bool isDead(size_t i, size_t j, size_t k) const
Returns true if the cell of index (i,j,k) should be ignored.
virtual size_t getNumCellsI() const =0
Returns the number of cells on the first logical axis.
virtual size_t getNumCellsK() const =0
Returns the number of cells on the third logical axis.