#include "StdMeshers_Propagation.hxx"#include "utilities.h"#include "SMDS_SetIterator.hxx"#include "SMESH_Algo.hxx"#include "SMESH_Gen.hxx"#include "SMESH_HypoFilter.hxx"#include "SMESH_Mesh.hxx"#include "SMESH_subMesh.hxx"#include <BRepTools_WireExplorer.hxx>#include <TopTools_ListIteratorOfListOfShape.hxx>#include <TopTools_MapOfShape.hxx>#include <TopoDS.hxx>
Go to the source code of this file.
Defines | |
| #define | DBGMSG(txt) |
Enumerations | |
| enum | SubMeshState |
Functions | |
| ostream & | operator<< (ostream &save, StdMeshers_Propagation &hyp) |
| istream & | operator>> (istream &load, StdMeshers_Propagation &hyp) |
| #define DBGMSG | ( | txt | ) |
Definition at line 43 of file StdMeshers_Propagation.cxx.
| enum SubMeshState |
Definition at line 120 of file StdMeshers_Propagation.cxx.
{ WAIT_PROPAG_HYP, // propagation hyp or local 1D hyp is missing
HAS_PROPAG_HYP, // propag hyp on this submesh
IN_CHAIN, // submesh is in propagation chain
LAST_IN_CHAIN, // submesh with local 1D hyp breaking a chain
MEANINGLESS_LAST }; // meaningless
| ostream& operator<< | ( | std::ostream & | save, |
| StdMeshers_Propagation & | hyp | ||
| ) |
Definition at line 97 of file StdMeshers_Propagation.cxx.
References StdMeshers_Propagation.SaveTo().
{ return hyp.SaveTo(save); }
| istream& operator>> | ( | std::istream & | load, |
| StdMeshers_Propagation & | hyp | ||
| ) |
Definition at line 98 of file StdMeshers_Propagation.cxx.
References StdMeshers_Propagation.LoadFrom().
{ return hyp.LoadFrom(load); }