Salome HOME
Replace oe by ?
[modules/smesh.git] / src / Tools / MeshCut / MeshCut_Carre.hxx
1 #ifndef __MESHCUT_CARRE_HXX__
2 #define __MESHCUT_CARRE_HXX__
3
4 #include "MeshCut_Maillage.hxx"
5
6 namespace MESHCUT
7   {
8     class Carre
9     {
10     public:
11       float x0, x1, y0, y1;
12     public:
13       Carre(float _x0, float _x1, float _y0, float _y1);
14       bool disjoint(Carre* c2);
15       bool contientNoeud(int ngnoeud, Maillage *MAILLAGE);
16       void affichage();
17     };
18   }
19
20 #endif