Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _SMESH_ProjectionSource1D_HXX_
00029 #define _SMESH_ProjectionSource1D_HXX_
00030
00031 #include "SMESH_StdMeshers.hxx"
00032
00033 #include "SMESH_Hypothesis.hxx"
00034 #include "Utils_SALOME_Exception.hxx"
00035
00036 #include <TopoDS_Vertex.hxx>
00037
00038 class SMESH_Gen;
00039
00040
00046
00047
00048 class STDMESHERS_EXPORT StdMeshers_ProjectionSource1D: public SMESH_Hypothesis
00049 {
00050 public:
00051
00052 StdMeshers_ProjectionSource1D( int hypId, int studyId, SMESH_Gen * gen );
00053
00054 virtual ~StdMeshers_ProjectionSource1D();
00055
00059 void SetSourceEdge(const TopoDS_Shape& edge)
00060 throw ( SALOME_Exception );
00061
00065 TopoDS_Shape GetSourceEdge() const { return _sourceEdge; }
00066
00070 bool IsCompoundSource() const
00071 { return !_sourceEdge.IsNull() && _sourceEdge.ShapeType() == TopAbs_COMPOUND; }
00072
00076 void SetSourceMesh(SMESH_Mesh* mesh);
00077
00081 SMESH_Mesh* GetSourceMesh() const { return _sourceMesh; }
00082
00087 void SetVertexAssociation(const TopoDS_Shape& sourceVertex,
00088 const TopoDS_Shape& targetVertex)
00089 throw ( SALOME_Exception );
00090
00095 TopoDS_Vertex GetSourceVertex() const { return _sourceVertex; }
00096
00101 TopoDS_Vertex GetTargetVertex() const { return _targetVertex; }
00102
00107 bool HasVertexAssociation() const
00108 { return ( !_sourceVertex.IsNull() && !_targetVertex.IsNull() ); }
00109
00113 void GetStoreParams(TopoDS_Shape& s1,
00114 TopoDS_Shape& s2,
00115 TopoDS_Shape& s3) const;
00116
00120 void RestoreParams(const TopoDS_Shape& s1,
00121 const TopoDS_Shape& s2,
00122 const TopoDS_Shape& s3,
00123 SMESH_Mesh* mesh);
00124
00125 virtual std::ostream & SaveTo(std::ostream & save);
00126 virtual std::istream & LoadFrom(std::istream & load);
00127 friend std::ostream & operator <<(std::ostream & save, StdMeshers_ProjectionSource1D & hyp);
00128 friend std::istream & operator >>(std::istream & load, StdMeshers_ProjectionSource1D & hyp);
00129
00138 virtual bool SetParametersByMesh(const SMESH_Mesh* theMesh, const TopoDS_Shape& theShape);
00139
00144 virtual bool SetParametersByDefaults(const TDefaults& dflts, const SMESH_Mesh* theMesh=0);
00145
00146 protected:
00147
00148 TopoDS_Shape _sourceEdge;
00149 SMESH_Mesh* _sourceMesh;
00150 TopoDS_Vertex _sourceVertex;
00151 TopoDS_Vertex _targetVertex;
00152 };
00153
00154 #endif