Salome HOME
3440d46565907d14aacacf281cc4578de4fae2f5
[modules/hexablock.git] / src / HEXABLOCK / HexAssoEdge.hxx
1
2 // class : Gestion des formes associees (Hexa 5)
3
4 // Copyright (C) 2009-2023  CEA, EDF
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, or (at your option) any later version.
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 #include <TopTools_IndexedMapOfShape.hxx>
29 #include <TopoDS_Shape.hxx>
30
31 BEGIN_NAMESPACE_HEXA
32
33 class HexaExport AssoEdge
34 {
35 public :
36     AssoEdge (EdgeShape* shape, double deb, double fin);
37     virtual ~AssoEdge ()         {}
38
39     EdgeShape*         getEdgeShape() { return arc_line;  }
40     BRepAdaptor_Curve* getCurve ()    { return arc_curve; }
41     double             getStart ()    { return arc_para1; }
42     double             getEnd   ()    { return arc_para2; }
43     double             length   ();
44     double             getUstart ();                       // for Mesh Plugin
45
46
47     const double*      getOrigin ()   { return arc_start; }
48     const double*      getExtrem ()   { return arc_end;   }
49
50     int onExtremity (AssoEdge* other, int& ext_other);
51     int onExtremity (double* point);
52
53     virtual void dump ();
54     void saveXml (XmlWriter* xml);
55
56     void setStart (double param);
57     void setEnd   (double param);
58
59 private :
60     bool       maj_extrem;
61     double     arc_para1, arc_para2;
62     EdgeShape* arc_line;
63
64     bool    arc_reverse;
65     Real3   arc_start,  arc_end;
66     BRepAdaptor_Curve*  arc_curve;  // Duplication a cause du plugin BP
67 };
68 END_NAMESPACE_HEXA
69 #endif