Salome HOME
Updated copyright comment
[modules/hexablock.git] / src / HEXABLOCK / HexVector.hxx
old mode 100755 (executable)
new mode 100644 (file)
index 875a138..2c534c7
@@ -1,6 +1,24 @@
 
 // class : Les vecteurs
 
+// Copyright (C) 2009-2024  CEA, EDF
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 #ifndef __VECTOR_H
 #define __VECTOR_H
 
 
 BEGIN_NAMESPACE_HEXA
 
-class Vector : public EltBase
+class HexaExport Vector : public EltBase
 {
 public:
-    double getDx ();
-    double getDy ();
-    double getDz ();
+    double getDx ()    { return v_dx ; }
+    double getDy ()    { return v_dy ; }
+    double getDz ()    { return v_dz ; }
+    double getNorm   ()    { return sqrt (v_dx*v_dx + v_dy*v_dy + v_dz*v_dz); }
+    double getAngleX ();
 
-public:
     Vector (Document* doc, double dx=0, double dy=0, double dz=0);
+#ifndef SWIG
+public:
     Vector (Vector* lautre);
     virtual ~Vector () {}
     virtual void dump ();
+    double  getCoord (int dir);
+    double* getCoord (double coord[]);
+    int     getUnitVector (double coord[]);
 
-    double norme   ()    { return sqrt (v_dx*v_dx + v_dy*v_dy + v_dz*v_dz); }
-    int    renormer ();
+    virtual void saveXml (XmlWriter* xml);
+    int    renormer  ();
     void   vectoriel  (Vector* a, Vector*b);
     void   multiplier (double scal);
     int    calculNormale (double& nx, double& ny, double& nz);
@@ -33,53 +57,7 @@ private:
     double v_dx;
     double v_dy;
     double v_dz;
+#endif
 };
-// ------------------------------------------- Inlining
-inline double Vector::getDx() { return v_dx; }
-inline double Vector::getDy() { return v_dy; }
-inline double Vector::getDz() { return v_dz; }
-
-// ===================================================== renormer
-inline int Vector::renormer() 
-{
-   double dn = norme ();
-   if (dn < 1e-30) 
-      return HERR;
-
-   v_dx /= dn;
-   v_dy /= dn;
-   v_dz /= dn;
-
-   return HOK;
-}
-// ===================================================== vectoriel
-inline void Vector::vectoriel (Vector* a, Vector*b)
-{
-   v_dx =   a->v_dy * b->v_dz - b->v_dy * a->v_dz; 
-   v_dy =   a->v_dz * b->v_dx - b->v_dz * a->v_dx; 
-   v_dz =   a->v_dx * b->v_dy - b->v_dx * a->v_dy; 
-}
-
-// ===================================================== multiplier
-inline void Vector::multiplier (double scalaire)
-{
-   v_dx *= scalaire;
-   v_dy *= scalaire;
-   v_dz *= scalaire;
-}
-// ===================================================== dump
-inline void Vector::dump ()
-{
-   printf ("Vector ");
-   printName (" = ");
-   if (NOT isHere ())
-      {
-      printf ("(*** deleted ***)\n");
-      return;
-      }
-
-   printf ("(%g, %g, %g)\n", v_dx,v_dy,v_dz);
-}
-
 END_NAMESPACE_HEXA
 #endif