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