]> SALOME platform Git repositories - modules/hexablock.git/blob - src/HEXABLOCK/HexKasPoint.hxx
Salome HOME
Merge from V6_main 01/04/2013
[modules/hexablock.git] / src / HEXABLOCK / HexKasPoint.hxx
1 //
2 // CC++ : Representation Cascade d'un point
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_POINT_HXX_
24 #define __KAS_POINT_HXX_
25
26 #include "HexGlobale.hxx"
27
28 #ifndef NO_CASCADE
29
30 #include <gp_Pnt.hxx>
31 #include <TopoDS_Vertex.hxx>
32
33 BEGIN_NAMESPACE_HEXA
34 class KasPoint
35 {
36 public :
37    KasPoint ();
38  
39    double* getCoord () { return g_coord;   }
40    bool    isOk  ()    { return is_ok;     }
41    bool    isBad ()    { return NOT is_ok; }
42
43    void associate   (Vertex* node);
44    void razPoint    ();
45    int  definePoint (Vertex* node);
46    void definePoint (double*   coord);
47    void definePoint (gp_Pnt& gpoint);
48
49    TopoDS_Vertex& getVertex ()              { return g_vertex;  }
50
51 private :
52    string b_rep; 
53    Real3  g_coord;
54    bool   is_ok;
55
56    TopoDS_Vertex g_vertex;
57    gp_Pnt        g_point;
58 };
59 END_NAMESPACE_HEXA
60 #endif
61 #endif