Salome HOME
281fb7ed8749918ce9ec0622fc2b4ceeea59f9c9
[modules/hexablock.git] / src / HEXABLOCK / HexBiCylinderShape.hxx
1 //
2 // CC++ : Representation Cascade d'un bi-cylindre
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 __BI_CYLINDER_SHAPE_HXX_
24 #define __BI_CYLINDER_SHAPE_HXX_
25
26 #include "HexGlobale.hxx"
27
28 BEGIN_NAMESPACE_HEXA
29
30 class HexaExport BiCylinderShape
31 {
32 public :
33    BiCylinderShape (Document* doc);
34   ~BiCylinderShape () { }
35
36    NewShape* getShape()              { return bi_shape; }
37
38    int defineCyls (double* borig,  double* bnorm, double* bbase,
39                    double  brayon, double  bhaut,
40                    double* sorig,  double* snorm, double* sbase,
41                    double  srayon, double  shaut);
42    int associate (Edge* edge);
43    int associate (Edge* edge, EdgeShape* line, double p1, double p2, int extr);
44
45 private :
46    int  anaVertex (Vertex* node, int* tline, double* tpara);
47
48 private :
49    static int nbr_intersections;
50    Document*  bi_docu;
51    NewShape*  bi_shape;
52    bool       no_inter;
53 };
54 END_NAMESPACE_HEXA
55 #endif