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