Salome HOME
Porting HEXABLOCK module on WIN32 platform.
[modules/hexablock.git] / src / HEXABLOCK / HexNewShape.hxx
index cb38a614615743905f72ac93abb46e51a3609815..3c1a17e293bbc2505a72706b6aef9e3f44a9d40b 100644 (file)
@@ -4,9 +4,10 @@
 #ifndef __NEW_SHAPE_H_
 #define __NEW_SHAPE_H_
 
+#include "Hex_defines.hxx"
 #include "HexEltBase.hxx"
 
-#ifndef NO_CASCADE
+#ifndef SWIG
 #include <TopTools_IndexedMapOfShape.hxx>
 #include <TopoDS_Shape.hxx>
 #include <TopoDS_Compound.hxx>
@@ -15,7 +16,7 @@
 
 BEGIN_NAMESPACE_HEXA
 
-class NewShape : public EltBase
+class HEXABLOCKENGINE_EXPORT NewShape : public EltBase
 {
 public :         // for TUI
    virtual int countVertex ()   { return tab_vertex.size ();  }
@@ -30,17 +31,19 @@ public :         // for TUI
    cpchar getNameEdge    (int nro);
    cpchar getNameFace    (int nro);
 
+   NewShape (Document* dad, EnumShape type=SH_NONE);
+
+#ifndef SWIG
+public :         // for GUI
    const string&       getBrep ();
    const TopoDS_Shape& getShape ();
 
-public :         // for GUI
    EnumShape    getOrigin ()        { return sh_origin ; }
    VertexShape* getVertexShape (int nro);
    EdgeShape*   getEdgeShape (int nro);
    FaceShape*   getFaceShape (int nro);
 
 public :         // for Others
-   NewShape (Document* dad, EnumShape type=SH_NONE);
    void  setShape (const TopoDS_Shape& shape, EnumShape type=SH_IMPORT);
    void  setBrep  (rcstring brep);
    int   addPoint (double* coord);
@@ -62,6 +65,8 @@ public :         // for Others
    void openShape ();
    int  addCircle (double* center, double rad, double* norm, double* base);
    int  addSphere (double* center, double radius);
+   int  transfoShape   (Matrix& matrix, SubShape* shape);
+   int  translateShape (double  dir[],  SubShape* shape);
    void closeShape();
 
 private :
@@ -101,6 +106,7 @@ private :     // ________________________________________________________
    int sh_face_max;
    int sh_edge_max;
    int sh_vertex_max;
+#endif
 };
 END_NAMESPACE_HEXA
 #endif