]> SALOME platform Git repositories - modules/hexablock.git/blob - src/HEXABLOCK/HexAssoEdge.hxx
Salome HOME
Merge from V6_main 01/04/2013
[modules/hexablock.git] / src / HEXABLOCK / HexAssoEdge.hxx
1
2 // class : Gestion des formes associees (Hexa 5)
3
4 // Copyright (C) 2009-2013  CEA/DEN, EDF R&D
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef __ASSO_EDGE_H_
24 #define __ASSO_EDGE_H_
25
26 #include "HexEdgeShape.hxx"
27
28 #ifndef NO_CASCADE
29 #include <TopTools_IndexedMapOfShape.hxx>
30 #include <TopoDS_Shape.hxx>
31 #endif
32
33 BEGIN_NAMESPACE_HEXA
34
35 class AssoEdge
36 {
37 public :
38     AssoEdge (EdgeShape* shape, double deb, double fin);
39
40     EdgeShape*         getEdgeShape() { return arc_line; }
41     BRepAdaptor_Curve* getCurve ()   { return arc_curve; }
42     double             getStart ()   { return arc_para1; }
43     double             getEnd   ()   { return arc_para2; }
44     double             length   ();
45     double             getUstart ();                       // for Mesh Plugin
46
47
48     const double*      getOrigin ()  { return arc_start; }
49     const double*      getExtrem ()  { return arc_end;   }
50
51     int onExtremity (AssoEdge* other, int& ext_other);
52     int onExtremity (double* point);
53
54     virtual void dump ();
55     void saveXml (XmlWriter* xml);
56
57     void setStart (double param);
58     void setEnd   (double param);
59
60 private :
61     bool       maj_extrem;
62     double     arc_para1, arc_para2;
63     EdgeShape* arc_line;
64
65     bool    arc_reverse;
66     Real3   arc_start,  arc_end;
67     BRepAdaptor_Curve*  arc_curve;    // Duplication a cause du plugin BP
68 };
69 END_NAMESPACE_HEXA
70 #endif