Salome HOME
PR: merged from V5_1_4rc1
[modules/smesh.git] / src / SMESHDS / SMESHDS_Command.hxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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 //  SMESH SMESHDS : management of mesh data and SMESH document
24 //  File   : SMESHDS_Command.hxx
25 //  Module : SMESH
26 //
27 #ifndef _SMESHDS_Command_HeaderFile
28 #define _SMESHDS_Command_HeaderFile
29
30 #include "SMESH_SMESHDS.hxx"
31
32 #include "SMESHDS_CommandType.hxx"
33 #include <list>
34 #include <vector>
35
36 class SMESHDS_EXPORT SMESHDS_Command
37 {
38
39   public:
40         SMESHDS_Command(const SMESHDS_CommandType aType);
41         void AddNode(int NewNodeID, double x, double y, double z);
42         void Add0DElement(int New0DElementID, int idnode);
43         void AddEdge(int NewEdgeID, int idnode1, int idnode2);
44         void AddFace(int NewFaceID, int idnode1, int idnode2, int idnode3);
45         void AddFace(int NewFaceID, int idnode1, int idnode2, int idnode3,
46                 int idnode4);
47         void AddVolume(int NewVolID, int idnode1, int idnode2, int idnode3,
48                 int idnode4);
49         void AddVolume(int NewVolID, int idnode1, int idnode2, int idnode3,
50                 int idnode4, int idnode5);
51         void AddVolume(int NewVolID, int idnode1, int idnode2, int idnode3,
52                 int idnode4, int idnode5, int idnode6);
53         void AddVolume(int NewVolID, int idnode1, int idnode2, int idnode3,
54                 int idnode4, int idnode5, int idnode6, int idnode7, int idnode8);
55         void AddPolygonalFace (const int        ElementID,
56                                std::vector<int> nodes_ids);
57         void AddPolyhedralVolume (const int        ElementID,
58                                   std::vector<int> nodes_ids,
59                                   std::vector<int> quantities);
60         // special methods for quadratic elements
61         void AddEdge(int NewEdgeID, int n1, int n2, int n12);
62         void AddFace(int NewFaceID, int n1, int n2, int n3,
63                      int n12, int n23, int n31);
64         void AddFace(int NewFaceID, int n1, int n2, int n3, int n4,
65                      int n12, int n23, int n34, int n41);
66         void AddVolume(int NewVolID, int n1, int n2, int n3, int n4,
67                        int n12, int n23, int n31, int n14, int n24, int n34);
68         void AddVolume(int NewVolID, int n1, int n2, int n3, int n4, int n5,
69                        int n12, int n23, int n34, int n41,
70                        int n15, int n25, int n35, int n45);
71         void AddVolume(int NewVolID, int n1, int n2, int n3,
72                        int n4, int n5, int n6,
73                        int n12, int n23, int n31,
74                        int n45, int n56, int n64,
75                        int n14, int n25, int n36);
76         void AddVolume(int NewVolID, int n1, int n2, int n3, int n4,
77                        int n5, int n6, int n7, int n8,
78                        int n12, int n23, int n34, int n41,
79                        int n56, int n67, int n78, int n85,
80                        int n15, int n26, int n37, int n48);
81         
82         void MoveNode(int NewNodeID, double x, double y, double z);
83         void RemoveNode(int NodeID);
84         void RemoveElement(int ElementID);
85         void ChangeElementNodes(int ElementID, int nodes[], int nbnodes);
86         void ChangePolyhedronNodes(const int ElementID,
87                                    std::vector<int> nodes_ids,
88                                    std::vector<int> quantities);
89         void Renumber (const bool isNodes, const int startID, const int deltaID);
90         SMESHDS_CommandType GetType();
91         int GetNumber();
92         const std::list<int> & GetIndexes();
93         const std::list<double> & GetCoords();
94          ~SMESHDS_Command();
95   private:
96         SMESHDS_CommandType myType;
97         int myNumber;
98         std::list<double> myReals;
99         std::list<int> myIntegers;
100 };
101 #endif