Salome HOME
Move Hex_defines.hxx to the list of the headers.
[modules/hexablock.git] / src / HEXABLOCK / HexVector.hxx
1
2 // class : Les vecteurs
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 #ifndef __VECTOR_H
23 #define __VECTOR_H
24
25 #include "Hex_defines.hxx"
26 #include "HexEltBase.hxx"
27
28 #include <cmath>
29
30 BEGIN_NAMESPACE_HEXA
31
32 class HEXABLOCKENGINE_EXPORT Vector : public EltBase
33 {
34 public:
35     double getDx ()    { return v_dx ; }
36     double getDy ()    { return v_dy ; }
37     double getDz ()    { return v_dz ; }
38     double getNorm   ()    { return sqrt (v_dx*v_dx + v_dy*v_dy + v_dz*v_dz); }
39     double getAngleX ();
40
41     Vector (Document* doc, double dx=0, double dy=0, double dz=0);
42 #ifndef SWIG
43 public:
44     Vector (Vector* lautre);
45     virtual ~Vector () {}
46     virtual void dump ();
47     double  getCoord (int dir);
48     double* getCoord (double coord[]);
49     int     getUnitVector (double coord[]);
50
51     virtual void saveXml (XmlWriter* xml);
52     int    renormer  ();
53     void   vectoriel  (Vector* a, Vector*b);
54     void   multiplier (double scal);
55     int    calculNormale (double& nx, double& ny, double& nz);
56
57 private:
58     double v_dx;
59     double v_dy;
60     double v_dz;
61 #endif
62 };
63 END_NAMESPACE_HEXA
64 #endif