]> SALOME platform Git repositories - modules/hexablock.git/blob - src/HEXABLOCK/HexKasBiCylinder.hxx
Salome HOME
Merge from V6_main 01/04/2013
[modules/hexablock.git] / src / HEXABLOCK / HexKasBiCylinder.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 __KAS_BI_CYLINDER_HXX_
24 #define __KAS_BI_CYLINDER_HXX_
25
26 #include "HexGlobale.hxx"
27
28 #ifndef NO_CASCADE
29
30 BEGIN_NAMESPACE_HEXA
31
32 class KasLine;
33
34 class KasBiCylinder
35 {
36 public :
37    KasBiCylinder () { purge () ; }
38   ~KasBiCylinder () { purge () ; }
39  
40    int defineCyls (double* borig,  double* bnorm, double* bbase,
41                    double  brayon, double  bhaut,
42                    double* sorig,  double* snorm, double* sbase,
43                    double  srayon, double  shaut);
44    int associate  (Edge* edge);
45
46 private :
47    int  anaVertex (Vertex* node, int* tline, double* tpara);
48    void purge ();
49
50 private :
51    std::vector <KasLine*> inter_line;
52    bool no_inter;
53 };
54 END_NAMESPACE_HEXA
55 #endif
56 #endif