MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
ot_mathematique.h
Aller à la documentation de ce fichier.
1 //####//------------------------------------------------------------
2 //####//------------------------------------------------------------
3 //####// MAGiC
4 //####// Jean Christophe Cuilliere et Vincent FRANCOIS
5 //####// Departement de Genie Mecanique - UQTR
6 //####//------------------------------------------------------------
7 //####// MAGIC est un projet de recherche de l equipe ERICCA
8 //####// du departement de genie mecanique de l Universite du Quebec a Trois Rivieres
9 //####// http://www.uqtr.ca/ericca
10 //####// http://www.uqtr.ca/
11 //####//------------------------------------------------------------
12 //####//------------------------------------------------------------
13 //####//
14 //####// ot_mathematique.h
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// Derniere modification par francois
20 //####// mar 23 jui 2024 17:34:39 EDT
21 //####//------------------------------------------------------------
22 //####//------------------------------------------------------------
23 #ifndef _OTMATHEMATIQUE_
24 #define _OTMATHEMATIQUE_
25 
26 
27 
28 #include "ot_doubleprecision.h"
29 #include <iostream>
30 #include <map>
31 #include <vector>
32 
33 
35 {
36 public:
37  OT_HISTOGRAMME(void);
38  OT_HISTOGRAMME(double largeur_colonne);
39  OT_HISTOGRAMME(double largeur_colonne,OT_HISTOGRAMME &mdd);
41  ~OT_HISTOGRAMME(void);
42  void fixe_largeur_colonne(double largeur_colonne);
43  double get_largeur_colonne(void);
44  void ajouter_valeur(double x,double val);
45  void ajouter_valeur(long i,double val);
46  int get_valeur(double x,double &val);
47  int get_valeur(long i,double &val);
48  int get_premiere_valeur(std::map<long,double>::iterator &it,double &valeur);
49  int get_suivante_valeur(std::map<long,double>::iterator &it,double &valeur);
50  int get_premiere_valeur(std::map<long,double>::iterator &it,double &valeur,double &borne_min,double &borne_max);
51  int get_suivante_valeur(std::map<long,double>::iterator &it,double &valeur,double &borne_min,double &borne_max);
52  int get_premiere_valeur(std::map<long,double>::iterator &it,double &valeur,long &i);
53  int get_suivante_valeur(std::map<long,double>::iterator &it,double &valeur,long &i);
54  long get_nb_colonne(void);
55  double get_x_min(void);
56  double get_x_max(void);
59  void enregistrer_bin(std::ofstream& ofstr);
60  void ouvrir_bin(std::ifstream& ifstr);
61  void ouvrir_txt(char* nom_fichier);
62  void exporter(std::ofstream& ofstrm);
63 protected:
64  bool m_init;
65  long m_i_min;
66  long m_i_max;
68  std::map<long,double,std::less<long>> m_map_colonne;
69 };
70 
72 {
73 public:
74  OT_QUATERNION(void);
75  OT_QUATERNION(double x,double y,double z,double w);
77  double get_x(void);
78  void change_x(double x);
79  double get_y(void);
80  void change_y(double y);
81  double get_z(void);
82  void change_z(double z);
83  double get_w(void);
84  void change_w(double w);
85 
87 
88 protected:
89  double valeur[4];
90 };
91 
92 
93 
95 {
96 public :
97  // construction
98  OT_VECTEUR_3D(double x,double y,double z);
99  OT_VECTEUR_3D(double *xyz);
100  OT_VECTEUR_3D(double *xyz1,double *xyz2);
101  OT_VECTEUR_3D(void);
102  OT_VECTEUR_3D(const OT_VECTEUR_3D& mdd);
103  OT_VECTEUR_3D unite(int i);
104  virtual ~OT_VECTEUR_3D() {};
105  // stream string output
106  friend std::ostream & operator << ( std::ostream & __os, const OT_VECTEUR_3D & __vec);
107 
108  // comparison
109  bool operator== (const OT_VECTEUR_3D& mdd) const;
110  bool operator!= (const OT_VECTEUR_3D& mdd) const;
111  bool operator< (const OT_VECTEUR_3D& mdd) const;
112  bool operator<= (const OT_VECTEUR_3D& mdd) const;
113  bool operator> (const OT_VECTEUR_3D& mdd) const;
114  bool operator>= (const OT_VECTEUR_3D& mdd) const;
115  int compare_valeur (const OT_VECTEUR_3D& mdd) const;
116 
117  // coordinate access
118  virtual double get_x(void) const ;
119  virtual double get_y(void) const ;
120  virtual double get_z(void) const ;
121  virtual void change_x(double x);
122  virtual void change_y(double y);
123  virtual void change_z(double z);
124  virtual double* get_xyz(void);
125 
126  operator const double* () const;
127  operator double* ();
128  double operator[] (int i) const;
129  double& operator[] (int i);
130  double operator() (int i) const;
131  double & operator() (int i);
132 
133  friend OT_VECTEUR_3D operator / (const OT_VECTEUR_3D& mdd1, double a);
134  friend OT_VECTEUR_3D operator - (const OT_VECTEUR_3D& mdd1);
135  friend double operator*(const OT_VECTEUR_3D& mdd1,const OT_VECTEUR_3D& mdd2);
136  friend OT_VECTEUR_3D operator&(const OT_VECTEUR_3D& mdd1,const OT_VECTEUR_3D& mdd2);
137  friend OT_VECTEUR_3D operator*(const class OT_MATRICE_3D& mdd1,const OT_VECTEUR_3D& mdd2);
138  friend OT_VECTEUR_3D operator+(const OT_VECTEUR_3D& mdd1,const OT_VECTEUR_3D& mdd2);
139  friend OT_VECTEUR_3D operator-(const OT_VECTEUR_3D& mdd1,const OT_VECTEUR_3D& mdd2);
140  friend OT_VECTEUR_3D operator*(double mdd1,const OT_VECTEUR_3D& mdd2);
141 
142  // arithmetic updates
145  OT_VECTEUR_3D& operator*= (double fScalar);
146  OT_VECTEUR_3D& operator/= (double fScalar);
147 
148  // vector operations
149  virtual double get_longueur(void) const ;
150  virtual double get_longueur2(void) const ;
151  virtual void norme(void);
153  virtual double diff(void);
154 
155 
156 private:
157  double valeur[3];
158 };
159 
161 {
162 public:
164  OT_MATRICE_3D(void);
165  OT_MATRICE_3D(double* t);
166  OT_MATRICE_3D(const OT_MATRICE_3D& mdd);
167 
168  // stream string output
169  friend std::ostream & operator << ( std::ostream & __os, const OT_MATRICE_3D & __mat);
170 
171  // access to matrix elements
172  double operator() (int iLigne, int iCol) const;
173  double & operator() (int iLigne, int iCol);
174  double valeur(int iLigne, int iCol) const;
175  double & valeur(int iLigne, int iCol);
182  OT_VECTEUR_3D & operator [](int i);
183  // return inverse matrix
184  OT_MATRICE_3D inverse() const;
185  // assignements methods
186  void identite(void);
187  double get_determinant();
188  void transpose(OT_MATRICE_3D& res) const;
189  OT_MATRICE_3D transpose() const;
190  friend OT_MATRICE_3D operator+(const OT_MATRICE_3D& mdd1,const OT_MATRICE_3D& mdd2);
191 
192 
193 private:
194  OT_VECTEUR_3D vec[3]; // attention ! vecteurs colonne
195  friend OT_VECTEUR_3D operator*(const OT_MATRICE_3D& mdd1,const OT_VECTEUR_3D& mdd2);
196 };
197 
198 std::ostream & operator << ( std::ostream & __os, const OT_MATRICE_3D & __mat);
199 std::ostream & operator << ( std::ostream & __os, const OT_VECTEUR_3D & __vec);
200 OT_VECTEUR_3D operator / (const OT_VECTEUR_3D& mdd1, double a);
202 double operator*(const OT_VECTEUR_3D& mdd1,const OT_VECTEUR_3D& mdd2);
203 OT_VECTEUR_3D operator&(const OT_VECTEUR_3D& mdd1,const OT_VECTEUR_3D& mdd2);
204 OT_VECTEUR_3D operator*(const OT_MATRICE_3D& mdd1,const OT_VECTEUR_3D& mdd2);
205 OT_VECTEUR_3D operator+(const OT_VECTEUR_3D& mdd1,const OT_VECTEUR_3D& mdd2);
206 OT_VECTEUR_3D operator-(const OT_VECTEUR_3D& mdd1,const OT_VECTEUR_3D& mdd2);
207 OT_MATRICE_3D operator*(const OT_MATRICE_3D& mdd1,const OT_MATRICE_3D& mdd2);
208 OT_MATRICE_3D operator+(const OT_MATRICE_3D& mdd1,const OT_MATRICE_3D& mdd2);
209 OT_VECTEUR_3D operator*(double mdd1,const OT_VECTEUR_3D& mdd2);
210 
211 
212 
213 #define ot_vecteur_4d
214 #ifdef ot_vecteur_4d
216 {
217 public :
218  //construction
219  OT_VECTEUR_4D(double x,double y,double z,double w);
220  OT_VECTEUR_4D(double *xyzw);
221  OT_VECTEUR_4D(double *xyz1,double *xyz2);
222  OT_VECTEUR_4D(void) {};
223  OT_VECTEUR_4D(const OT_VECTEUR_4D& mdd);
224  OT_VECTEUR_4D & operator= (double);
225 
226  // stream string output
227  friend std::ostream & operator << ( std::ostream & __os, const OT_VECTEUR_4D & __vec);
228 
229  // comparison
230  bool operator== (const OT_VECTEUR_4D& mdd) const;
231  bool operator!= (const OT_VECTEUR_4D& mdd) const;
232  bool operator< (const OT_VECTEUR_4D& mdd) const;
233  bool operator<= (const OT_VECTEUR_4D& mdd) const;
234  bool operator> (const OT_VECTEUR_4D& mdd) const;
235  bool operator>= (const OT_VECTEUR_4D& mdd) const;
236  // int compare_valeur (const OT_VECTEUR_4D& mdd) const;
237 
238  // coordinate access
239  virtual double get_x(void) const ;
240  virtual double get_y(void) const ;
241  virtual double get_z(void) const ;
242  virtual double get_w(void) const ;
243  virtual double & x(void);
244  virtual double & y(void);
245  virtual double & z(void);
246  virtual double & w(void);
247  virtual void change_x(double x);
248  virtual void change_y(double y);
249  virtual void change_z(double z);
250  virtual void change_w(double w);
251  virtual double* get_xyzw(void);
252  operator const double* () const;
253  operator double* ();
254  double operator[] (int i) const;
255  double& operator[] (int i);
256  double operator() (int i) const;
257  double & operator() (int i);
258 
261  double operator* (const OT_VECTEUR_4D & a);
262 
263  // arithmetic updates
266  OT_VECTEUR_4D& operator*= (double fScalar);
267  OT_VECTEUR_4D& operator/= (double fScalar);
268  virtual double get_longueur(void) const ;
269  virtual double get_longueur2(void) const ;
270 
271 private:
272  double valeur[4];
273 };
274 
275 OT_VECTEUR_4D operator* (const OT_VECTEUR_4D & rkV, const double a);
276 OT_VECTEUR_4D operator* (const double a, const OT_VECTEUR_4D & rkV);
277 OT_VECTEUR_4D operator/ (const OT_VECTEUR_4D & rkV, const double a);
278 OT_VECTEUR_4D operator/ (const double a, const OT_VECTEUR_4D & rkV);
279 std::ostream & operator << ( std::ostream & __os, const OT_VECTEUR_4D & __vec);
280 #endif // ot_vecteur_4d
281 
282 
283 
285 {
286 public :
287  //construction
289  OT_VECTEUR_4DD(double2 *xyzw);
291  OT_VECTEUR_4DD(const OT_VECTEUR_4DD& mdd);
293 
294  // stream string output
295  friend std::ostream & operator << ( std::ostream & __os, const OT_VECTEUR_4DD & __vec);
296 
297  // comparison
298  bool operator== (const OT_VECTEUR_4DD& mdd) const;
299  bool operator!= (const OT_VECTEUR_4DD& mdd) const;
300  bool operator< (const OT_VECTEUR_4DD& mdd) const;
301  bool operator<= (const OT_VECTEUR_4DD& mdd) const;
302  bool operator> (const OT_VECTEUR_4DD& mdd) const;
303  bool operator>= (const OT_VECTEUR_4DD& mdd) const;
304  int compare_valeur (const OT_VECTEUR_4DD& mdd) const;
305 
306  // coordinate access
307  virtual double2 get_x(void) const ;
308  virtual double2 get_y(void) const ;
309  virtual double2 get_z(void) const ;
310  virtual double2 get_w(void) const ;
311  virtual double2 & x(void);
312  virtual double2 & y(void);
313  virtual double2 & z(void);
314  virtual double2 & w(void);
315  virtual void change_x(double2 x);
316  virtual void change_y(double2 y);
317  virtual void change_z(double2 z);
318  virtual void change_w(double2 w);
319  virtual double2* get_xyzw(void);
320  double2 norme();
323  operator const double2* () const;
324  operator double2* ();
325  double2 operator[] (int i) const;
326  double2& operator[] (int i);
327  double2 operator() (int i) const;
328  double2 & operator() (int i);
329 
333 
334  // arithmetic updates
340  bool est_nul(void);
341  bool est_nul_3d(void);
342 
343 
344 private:
346 };
347 
348 
349 
351 {
352 public :
353  //construction
355  OT_VECTEUR_3DD(double2 *xyzw);
356  OT_VECTEUR_3DD(double2 *xyz1,double2 *xyz2);
358  OT_VECTEUR_3DD(const OT_VECTEUR_3DD& mdd);
360 
361  // stream string output
362  friend std::ostream & operator << ( std::ostream & __os, const OT_VECTEUR_3DD & __vec);
363 
364  // comparison
365  bool operator== (const OT_VECTEUR_3DD& mdd) const;
366  bool operator!= (const OT_VECTEUR_3DD& mdd) const;
367  bool operator< (const OT_VECTEUR_3DD& mdd) const;
368  bool operator<= (const OT_VECTEUR_3DD& mdd) const;
369  bool operator> (const OT_VECTEUR_3DD& mdd) const;
370  bool operator>= (const OT_VECTEUR_3DD& mdd) const;
371  int compare_valeur (const OT_VECTEUR_3DD& mdd) const;
372 
373  // coordinate access
374  virtual double2 get_x(void) const ;
375  virtual double2 get_y(void) const ;
376  virtual double2 get_z(void) const ;
377  virtual double2 & x(void);
378  virtual double2 & y(void);
379  virtual double2 & z(void);
380  virtual void change_x(double2 x);
381  virtual void change_y(double2 y);
382  virtual void change_z(double2 z);
383  virtual double2* get_xyz(void);
384  double2 norme();
386  virtual double2 get_longueur(void) ;
387  virtual double2 get_longueur2(void) ;
388  operator const double2* () const;
389  operator double2* ();
390  double2 operator[] (int i) const;
391  double2& operator[] (int i);
392  double2 operator() (int i) const;
393  double2 & operator() (int i);
394 
398 
399  // arithmetic updates
405 
406 
407 private:
409 };
410 
411 
412 
413 
414 
415 
416 OT_VECTEUR_4DD operator* (const OT_VECTEUR_4DD & rkV, const double2 a);
417 OT_VECTEUR_4DD operator* (const double2 a, const OT_VECTEUR_4DD & rkV);
418 OT_VECTEUR_4DD operator/ (const OT_VECTEUR_4DD & rkV, const double2 a);
419 OT_VECTEUR_4DD operator/ (const double2 a, const OT_VECTEUR_4DD & rkV);
420 std::ostream & operator << ( std::ostream & __os, const OT_VECTEUR_4DD & __vec);
421 OT_VECTEUR_3DD operator* (const OT_VECTEUR_3DD & rkV, const double2 a);
422 OT_VECTEUR_3DD operator* (const double2 a, const OT_VECTEUR_3DD & rkV);
423 OT_VECTEUR_3DD operator/ (const OT_VECTEUR_3DD & rkV, const double2 a);
424 OT_VECTEUR_3DD operator/ (const double2 a, const OT_VECTEUR_3DD & rkV);
425 std::ostream & operator << ( std::ostream & __os, const OT_VECTEUR_4DD & __vec);
426 
427 
428 
429 
430 
431 
433 {
434 public:
436 
437  static int egal(double a,double b,double eps);
438  static int egal(double *xyz1,double *xyz2,double eps);
439  static double qualite_triangle(double* noeud1,double* noeud2,double* noeud3);
440  static double qualite_tetra(double* noeud1,double* noeud2,double* noeud3,double *noeud4);
441  static void doubleto2int(double val,int& val1,int& val2);
442  static int estdansletetra(double *xyz1,double *xyz2,double *xyz3,double *xyz4,double x,double y, double z);
443  static int estdansletriangle(double *xyz1,double *xyz2,double *xyz3,double x,double y, double z);
444  static int projeteestdansletriangle(double *xyz1,double *xyz2,double *xyz3,double x,double y, double z);
445  static void projetedansletriangle(double *xyz1,double *xyz2,double *xyz3,double x,double y, double z,double &xx,double &yy,double &zz);
446  static void calculeparamEFdansletriangle(double *xyz1,double *xyz2,double *xyz3,double x,double y, double z,double &xsi,double &eta);
447 
448  static int compare_etat_tetra(int etat,int valeur);
449  static int compare_etat_triangle(int etat,int valeur);
450 
451  static double taille_tetra(double* noeud1,double* noeud2,double* noeud3,double *noeud4);
452  static double taille_triangle(double* noeud1,double* noeud2,double* noeud3);
453 };
454 
455 
456 template <int N=4>
457 class DOUBLEN
458 {
459 public:
460  DOUBLEN();
461  DOUBLEN(double *v);
462  DOUBLEN(DOUBLEN& mdd);
463  DOUBLEN(const DOUBLEN& mdd);
464  ~DOUBLEN();
465  double get_valeur(int num);
466  void change_valeur(int num,double val);
468  DOUBLEN<N> & operator=(const DOUBLEN<N> & mdd);
469 private:
470  double tab[N];
471 };
472 
473 struct lessOT_VECTEUR_4DD : std::binary_function<OT_VECTEUR_4DD, OT_VECTEUR_4DD, bool>
474 {
476  {
477  if (v1[0]!=v2[0]) return v1[0]<v2[0] ;
478  if (v1[1]!=v2[1]) return v1[1]<v2[1] ;
479  if (v1[2]!=v2[2]) return v1[2]<v2[2] ;
480  if (v1[3]!=v2[3]) return v1[3]<v2[3] ;
481  return 0;
482 
483  }
484  ;
485 };
486 
487 struct lessOT_VECTEUR_3DD : std::binary_function<OT_VECTEUR_3DD, OT_VECTEUR_3DD, bool>
488 {
490  {
491  if (v1[0]!=v2[0]) return v1[0]<v2[0] ;
492  if (v1[1]!=v2[1]) return v1[1]<v2[1] ;
493  if (v1[2]!=v2[2]) return v1[2]<v2[2] ;
494  return 0;
495 
496  }
497  ;
498 };
499 
500 
501 #endif
OT_VECTEUR_3D::operator-=
OT_VECTEUR_3D & operator-=(const OT_VECTEUR_3D &rkV)
Definition: ot_mathematique.cpp:614
OT_VECTEUR_3DD::operator+
OT_VECTEUR_3DD operator+(const OT_VECTEUR_3DD &rkV)
Definition: ot_mathematique.cpp:1224
OT_VECTEUR_4D::get_w
virtual double get_w(void) const
Definition: ot_mathematique.cpp:963
OT_VECTEUR_4D::get_x
virtual double get_x(void) const
Definition: ot_mathematique.cpp:939
OT_VECTEUR_4D::operator/=
OT_VECTEUR_4D & operator/=(double fScalar)
Definition: ot_mathematique.cpp:1067
OT_VECTEUR_3DD::operator>=
bool operator>=(const OT_VECTEUR_3DD &mdd) const
operator<<
std::ostream & operator<<(std::ostream &__os, const OT_MATRICE_3D &__mat)
Definition: ot_mathematique.cpp:688
OT_VECTEUR_4DD::vecteur_norme_3d
OT_VECTEUR_4DD vecteur_norme_3d()
Definition: ot_mathematique.cpp:1411
OT_VECTEUR_3D::change_z
virtual void change_z(double z)
Definition: ot_mathematique.cpp:444
OT_HISTOGRAMME::ajouter_valeur
void ajouter_valeur(double x, double val)
Definition: ot_mathematique.cpp:90
OT_VECTEUR_4DD::change_x
virtual void change_x(double2 x)
Definition: ot_mathematique.cpp:1456
OT_VECTEUR_4DD::valeur
double2 valeur[4]
Definition: ot_mathematique.h:345
OT_VECTEUR_4D::operator<=
bool operator<=(const OT_VECTEUR_4D &mdd) const
operator+
OT_VECTEUR_3D operator+(const OT_VECTEUR_3D &mdd1, const OT_VECTEUR_3D &mdd2)
Definition: ot_mathematique.cpp:848
OT_VECTEUR_4D::operator<<
friend std::ostream & operator<<(std::ostream &__os, const OT_VECTEUR_4D &__vec)
Definition: ot_mathematique.cpp:1082
OT_MATRICE_3D::get_determinant
double get_determinant()
Definition: ot_mathematique.cpp:735
OPERATEUR::FACE2
@ FACE2
Definition: ot_mathematique.h:435
OT_MATRICE_3D::change_vecteur3
void change_vecteur3(OT_VECTEUR_3D v)
Definition: ot_mathematique.cpp:810
OT_VECTEUR_4DD::change_y
virtual void change_y(double2 y)
Definition: ot_mathematique.cpp:1460
OT_VECTEUR_3DD::vecteur_norme
OT_VECTEUR_3DD vecteur_norme()
Definition: ot_mathematique.cpp:1165
OT_VECTEUR_3DD::norme
double2 norme()
Definition: ot_mathematique.cpp:1159
OT_QUATERNION::operator=
OT_QUATERNION & operator=(OT_QUATERNION &mdd)
Definition: ot_mathematique.cpp:371
OT_QUATERNION::OT_QUATERNION
OT_QUATERNION(void)
Definition: ot_mathematique.cpp:307
OT_VECTEUR_4DD::operator=
OT_VECTEUR_4DD & operator=(const OT_VECTEUR_4DD &)
Definition: ot_mathematique.cpp:1386
OT_HISTOGRAMME
Definition: ot_mathematique.h:34
OT_VECTEUR_3DD::operator<
bool operator<(const OT_VECTEUR_3DD &mdd) const
OT_VECTEUR_3D::operator<<
friend std::ostream & operator<<(std::ostream &__os, const OT_VECTEUR_3D &__vec)
Definition: ot_mathematique.cpp:556
OT_VECTEUR_3DD::operator-
OT_VECTEUR_3DD operator-(const OT_VECTEUR_3DD &rkV)
Definition: ot_mathematique.cpp:1230
OT_VECTEUR_3DD::operator<<
friend std::ostream & operator<<(std::ostream &__os, const OT_VECTEUR_3DD &__vec)
Definition: ot_mathematique.cpp:1307
OT_VECTEUR_4DD::OT_VECTEUR_4DD
OT_VECTEUR_4DD()
Definition: ot_mathematique.h:290
operator&
OT_VECTEUR_3D operator&(const OT_VECTEUR_3D &mdd1, const OT_VECTEUR_3D &mdd2)
Definition: ot_mathematique.cpp:647
OT_VECTEUR_3DD::valeur
double2 valeur[3]
Definition: ot_mathematique.h:408
OT_VECTEUR_4DD::operator*=
OT_VECTEUR_4DD & operator*=(double2 fScalar)
Definition: ot_mathematique.cpp:1553
OT_VECTEUR_3DD::operator==
bool operator==(const OT_VECTEUR_3DD &mdd) const
Definition: ot_mathematique.cpp:1321
OPERATEUR::SUR_FACE
@ SUR_FACE
Definition: ot_mathematique.h:435
OT_MATRICE_3D::identite
void identite(void)
Definition: ot_mathematique.cpp:743
OT_HISTOGRAMME::get_nb_colonne
long get_nb_colonne(void)
Definition: ot_mathematique.cpp:200
OT_MATRICE_3D::vec
OT_VECTEUR_3D vec[3]
Definition: ot_mathematique.h:194
OT_VECTEUR_3DD::operator>
bool operator>(const OT_VECTEUR_3DD &mdd) const
OT_VECTEUR_4DD::operator[]
double2 operator[](int i) const
Definition: ot_mathematique.cpp:1371
OT_MATRICE_3D::valeur
double valeur(int iLigne, int iCol) const
Definition: ot_mathematique.cpp:719
operator/
OT_VECTEUR_3D operator/(const OT_VECTEUR_3D &mdd1, double a)
Definition: ot_mathematique.cpp:562
OT_VECTEUR_3DD::x
virtual double2 & x(void)
Definition: ot_mathematique.cpp:1187
OT_VECTEUR_3D::operator/=
OT_VECTEUR_3D & operator/=(double fScalar)
Definition: ot_mathematique.cpp:628
OT_VECTEUR_4D::operator>=
bool operator>=(const OT_VECTEUR_4D &mdd) const
OT_VECTEUR_3D::get_longueur2
virtual double get_longueur2(void) const
Definition: ot_mathematique.cpp:488
OT_MATRICE_3D::operator[]
OT_VECTEUR_3D & operator[](int i)
Definition: ot_mathematique.cpp:702
OT_QUATERNION::get_x
double get_x(void)
Definition: ot_mathematique.cpp:331
OT_VECTEUR_4DD::change_w
virtual void change_w(double2 w)
Definition: ot_mathematique.cpp:1468
a
#define a(i, j)
OPERATEUR::FACE3
@ FACE3
Definition: ot_mathematique.h:435
OPERATEUR::ARETE4
@ ARETE4
Definition: ot_mathematique.h:435
OPERATEUR::projeteestdansletriangle
static int projeteestdansletriangle(double *xyz1, double *xyz2, double *xyz3, double x, double y, double z)
Definition: ot_mathematique.cpp:1748
OT_QUATERNION::get_z
double get_z(void)
Definition: ot_mathematique.cpp:351
OT_VECTEUR_3D::compare_valeur
int compare_valeur(const OT_VECTEUR_3D &mdd) const
Definition: ot_mathematique.cpp:521
OT_HISTOGRAMME::m_map_colonne
std::map< long, double, std::less< long > > m_map_colonne
Definition: ot_mathematique.h:68
OT_VECTEUR_3D::~OT_VECTEUR_3D
virtual ~OT_VECTEUR_3D()
Definition: ot_mathematique.h:104
OT_VECTEUR_3D::unite
OT_VECTEUR_3D unite(int i)
Definition: ot_mathematique.cpp:513
OT_VECTEUR_3D::change_y
virtual void change_y(double y)
Definition: ot_mathematique.cpp:439
OT_VECTEUR_3DD::get_longueur2
virtual double2 get_longueur2(void)
Definition: ot_mathematique.cpp:1178
OT_VECTEUR_3D::operator+=
OT_VECTEUR_3D & operator+=(const OT_VECTEUR_3D &rkV)
Definition: ot_mathematique.cpp:607
DOUBLEN::tab
double tab[N]
Definition: ot_mathematique.h:470
OT_VECTEUR_3D::operator==
bool operator==(const OT_VECTEUR_3D &mdd) const
Definition: ot_mathematique.cpp:526
OT_VECTEUR_4DD::get_w
virtual double2 get_w(void) const
Definition: ot_mathematique.cpp:1448
OPERATEUR::compare_etat_triangle
static int compare_etat_triangle(int etat, int valeur)
Definition: ot_mathematique.cpp:1857
OPERATEUR::calculeparamEFdansletriangle
static void calculeparamEFdansletriangle(double *xyz1, double *xyz2, double *xyz3, double x, double y, double z, double &xsi, double &eta)
Definition: ot_mathematique.cpp:1788
OT_VECTEUR_4D::operator!=
bool operator!=(const OT_VECTEUR_4D &mdd) const
OPERATEUR::ARETE2
@ ARETE2
Definition: ot_mathematique.h:435
OPERATEUR::estdansletetra
static int estdansletetra(double *xyz1, double *xyz2, double *xyz3, double *xyz4, double x, double y, double z)
Definition: ot_mathematique.cpp:1709
OT_VECTEUR_3DD::get_longueur
virtual double2 get_longueur(void)
Definition: ot_mathematique.cpp:1173
OT_MATRICE_3D::get_vecteur1
OT_VECTEUR_3D & get_vecteur1(void)
Definition: ot_mathematique.cpp:814
OT_HISTOGRAMME::m_i_max
long m_i_max
Definition: ot_mathematique.h:66
OPERATEUR::ARETE1
@ ARETE1
Definition: ot_mathematique.h:435
OT_HISTOGRAMME::~OT_HISTOGRAMME
~OT_HISTOGRAMME(void)
Definition: ot_mathematique.cpp:75
OT_VECTEUR_3D::get_x
virtual double get_x(void) const
Definition: ot_mathematique.cpp:417
OT_VECTEUR_4DD::w
virtual double2 & w(void)
Definition: ot_mathematique.cpp:1452
OT_VECTEUR_3DD::operator[]
double2 operator[](int i) const
Definition: ot_mathematique.cpp:1136
OPERATEUR::projetedansletriangle
static void projetedansletriangle(double *xyz1, double *xyz2, double *xyz3, double x, double y, double z, double &xx, double &yy, double &zz)
Definition: ot_mathematique.cpp:1755
OT_VECTEUR_3DD::operator*=
OT_VECTEUR_3DD & operator*=(double2 fScalar)
Definition: ot_mathematique.cpp:1290
OT_VECTEUR_3D::operator>=
bool operator>=(const OT_VECTEUR_3D &mdd) const
Definition: ot_mathematique.cpp:551
OT_HISTOGRAMME::get_valeur
int get_valeur(double x, double &val)
Definition: ot_mathematique.cpp:127
OT_VECTEUR_3D::OT_VECTEUR_3D
OT_VECTEUR_3D(void)
Definition: ot_mathematique.cpp:410
OT_VECTEUR_3DD::z
virtual double2 & z(void)
Definition: ot_mathematique.cpp:1203
OT_MATRICE_3D::operator()
double operator()(int iLigne, int iCol) const
Definition: ot_mathematique.cpp:727
OT_VECTEUR_4D::w
virtual double & w(void)
Definition: ot_mathematique.cpp:967
OT_VECTEUR_4DD::operator/=
OT_VECTEUR_4DD & operator/=(double2 fScalar)
Definition: ot_mathematique.cpp:1561
OPERATEUR::STRICTINTERIEUR
@ STRICTINTERIEUR
Definition: ot_mathematique.h:435
lessOT_VECTEUR_4DD
Definition: ot_mathematique.h:473
OT_VECTEUR_4D::change_z
virtual void change_z(double z)
Definition: ot_mathematique.cpp:979
OT_VECTEUR_4D::operator-
OT_VECTEUR_4D operator-(const OT_VECTEUR_4D &rkV)
Definition: ot_mathematique.cpp:999
OPERATEUR::compare_etat_tetra
static int compare_etat_tetra(int etat, int valeur)
Definition: ot_mathematique.cpp:1828
OT_VECTEUR_4D::operator==
bool operator==(const OT_VECTEUR_4D &mdd) const
double2
Definition: ot_doubleprecision.h:29
OT_VECTEUR_4DD::compare_valeur
int compare_valeur(const OT_VECTEUR_4DD &mdd) const
Definition: ot_mathematique.cpp:1578
OT_HISTOGRAMME::enregistrer_bin
void enregistrer_bin(std::ofstream &ofstr)
Definition: ot_mathematique.cpp:236
ot_doubleprecision.h
OT_VECTEUR_4D::x
virtual double & x(void)
Definition: ot_mathematique.cpp:943
OT_QUATERNION::change_y
void change_y(double y)
Definition: ot_mathematique.cpp:346
OT_VECTEUR_4DD::operator^
OT_VECTEUR_4DD operator^(const OT_VECTEUR_4DD &v2)
Definition: ot_mathematique.cpp:1520
OT_QUATERNION::get_w
double get_w(void)
Definition: ot_mathematique.cpp:361
OPERATEUR::ETAT
ETAT
Definition: ot_mathematique.h:435
OT_VECTEUR_3D::operator[]
double operator[](int i) const
Definition: ot_mathematique.cpp:464
OT_VECTEUR_4D::get_longueur
virtual double get_longueur(void) const
Definition: ot_mathematique.cpp:1612
OT_VECTEUR_4D::change_y
virtual void change_y(double y)
Definition: ot_mathematique.cpp:975
OT_VECTEUR_4DD::get_y
virtual double2 get_y(void) const
Definition: ot_mathematique.cpp:1432
OPERATEUR::ARETE6
@ ARETE6
Definition: ot_mathematique.h:435
OPERATEUR
Definition: ot_mathematique.h:432
OT_VECTEUR_3DD::get_z
virtual double2 get_z(void) const
Definition: ot_mathematique.cpp:1199
OT_VECTEUR_4DD::get_z
virtual double2 get_z(void) const
Definition: ot_mathematique.cpp:1440
OT_VECTEUR_4DD::y
virtual double2 & y(void)
Definition: ot_mathematique.cpp:1436
OT_VECTEUR_4DD::est_nul
bool est_nul(void)
Definition: ot_mathematique.cpp:1593
OT_VECTEUR_4D::z
virtual double & z(void)
Definition: ot_mathematique.cpp:959
OT_VECTEUR_4DD::operator<<
friend std::ostream & operator<<(std::ostream &__os, const OT_VECTEUR_4DD &__vec)
Definition: ot_mathematique.cpp:1572
OT_HISTOGRAMME::m_init
bool m_init
Definition: ot_mathematique.h:64
OT_VECTEUR_3DD::get_x
virtual double2 get_x(void) const
Definition: ot_mathematique.cpp:1183
OT_VECTEUR_3DD
Definition: ot_mathematique.h:350
OT_VECTEUR_4DD::operator>=
bool operator>=(const OT_VECTEUR_4DD &mdd) const
OPERATEUR::egal
static int egal(double a, double b, double eps)
Definition: ot_mathematique.cpp:1629
OT_VECTEUR_4D::operator*=
OT_VECTEUR_4D & operator*=(double fScalar)
Definition: ot_mathematique.cpp:1059
OT_MATRICE_3D
Definition: ot_mathematique.h:160
OT_VECTEUR_3D::operator&
friend OT_VECTEUR_3D operator&(const OT_VECTEUR_3D &mdd1, const OT_VECTEUR_3D &mdd2)
Definition: ot_mathematique.cpp:647
OT_VECTEUR_3DD::y
virtual double2 & y(void)
Definition: ot_mathematique.cpp:1195
lessOT_VECTEUR_3DD::operator()
bool operator()(OT_VECTEUR_3DD v1, OT_VECTEUR_3DD v2)
Definition: ot_mathematique.h:489
OT_VECTEUR_3D::get_xyz
virtual double * get_xyz(void)
Definition: ot_mathematique.cpp:449
OT_VECTEUR_3D::operator<=
bool operator<=(const OT_VECTEUR_3D &mdd) const
Definition: ot_mathematique.cpp:541
OT_VECTEUR_4DD::operator==
bool operator==(const OT_VECTEUR_4DD &mdd) const
Definition: ot_mathematique.cpp:1586
OT_QUATERNION::change_z
void change_z(double z)
Definition: ot_mathematique.cpp:356
OT_QUATERNION::change_w
void change_w(double w)
Definition: ot_mathematique.cpp:366
OT_QUATERNION::get_y
double get_y(void)
Definition: ot_mathematique.cpp:341
OT_MATRICE_3D::get_vecteur3
OT_VECTEUR_3D & get_vecteur3(void)
Definition: ot_mathematique.cpp:822
OT_MATRICE_3D::operator+
friend OT_MATRICE_3D operator+(const OT_MATRICE_3D &mdd1, const OT_MATRICE_3D &mdd2)
Definition: ot_mathematique.cpp:829
OT_VECTEUR_4D::operator<
bool operator<(const OT_VECTEUR_4D &mdd) const
OT_HISTOGRAMME::exporter
void exporter(std::ofstream &ofstrm)
Definition: ot_mathematique.cpp:291
OT_VECTEUR_4D::operator+
OT_VECTEUR_4D operator+(const OT_VECTEUR_4D &rkV)
Definition: ot_mathematique.cpp:992
OT_VECTEUR_4DD::operator-=
OT_VECTEUR_4DD & operator-=(const OT_VECTEUR_4DD &rkV)
Definition: ot_mathematique.cpp:1545
OT_QUATERNION
Definition: ot_mathematique.h:71
OT_MATRICE_3D::change_vecteur2
void change_vecteur2(OT_VECTEUR_3D v)
Definition: ot_mathematique.cpp:806
OT_VECTEUR_3D::operator>
bool operator>(const OT_VECTEUR_3D &mdd) const
Definition: ot_mathematique.cpp:546
OT_HISTOGRAMME::OT_HISTOGRAMME
OT_HISTOGRAMME(void)
Definition: ot_mathematique.cpp:33
OT_VECTEUR_4D::get_y
virtual double get_y(void) const
Definition: ot_mathematique.cpp:947
OT_VECTEUR_4D::operator*
double operator*(const OT_VECTEUR_4D &a)
Definition: ot_mathematique.cpp:1036
OT_VECTEUR_3D::operator*
friend double operator*(const OT_VECTEUR_3D &mdd1, const OT_VECTEUR_3D &mdd2)
Definition: ot_mathematique.cpp:591
OT_VECTEUR_3D::norme
virtual void norme(void)
Definition: ot_mathematique.cpp:494
operator-
OT_VECTEUR_3D operator-(const OT_VECTEUR_3D &mdd1)
Definition: ot_mathematique.cpp:583
OT_HISTOGRAMME::ouvrir_txt
void ouvrir_txt(char *nom_fichier)
Definition: ot_mathematique.cpp:272
OT_VECTEUR_4D::get_xyzw
virtual double * get_xyzw(void)
Definition: ot_mathematique.cpp:987
OT_VECTEUR_4DD::get_x
virtual double2 get_x(void) const
Definition: ot_mathematique.cpp:1424
OT_QUATERNION::valeur
double valeur[4]
Definition: ot_mathematique.h:89
OT_VECTEUR_4D::change_x
virtual void change_x(double x)
Definition: ot_mathematique.cpp:971
OT_VECTEUR_4DD::operator<
bool operator<(const OT_VECTEUR_4DD &mdd) const
OT_VECTEUR_3D::operator/
friend OT_VECTEUR_3D operator/(const OT_VECTEUR_3D &mdd1, double a)
Definition: ot_mathematique.cpp:562
OT_MATRICE_3D::transpose
OT_MATRICE_3D transpose() const
Definition: ot_mathematique.cpp:757
DOUBLEN::~DOUBLEN
~DOUBLEN()
Definition: ot_mathematique.cpp:1930
DOUBLEN::operator=
DOUBLEN< N > & operator=(DOUBLEN< N > &mdd)
Definition: ot_mathematique.cpp:1944
OT_HISTOGRAMME::operator=
OT_HISTOGRAMME & operator=(OT_HISTOGRAMME &mdd)
Definition: ot_mathematique.cpp:215
OT_VECTEUR_3DD::operator!=
bool operator!=(const OT_VECTEUR_3DD &mdd) const
OT_VECTEUR_3DD::operator-=
OT_VECTEUR_3DD & operator-=(const OT_VECTEUR_3DD &rkV)
Definition: ot_mathematique.cpp:1283
OPERATEUR::qualite_tetra
static double qualite_tetra(double *noeud1, double *noeud2, double *noeud3, double *noeud4)
Definition: ot_mathematique.cpp:1673
OT_VECTEUR_3DD::operator=
OT_VECTEUR_3DD & operator=(const OT_VECTEUR_3DD &)
Definition: ot_mathematique.cpp:1151
OT_VECTEUR_3D::get_y
virtual double get_y(void) const
Definition: ot_mathematique.cpp:423
OT_VECTEUR_3D::operator-
friend OT_VECTEUR_3D operator-(const OT_VECTEUR_3D &mdd1)
Definition: ot_mathematique.cpp:583
OT_VECTEUR_4D::get_z
virtual double get_z(void) const
Definition: ot_mathematique.cpp:955
OPERATEUR::SUR_ARETE
@ SUR_ARETE
Definition: ot_mathematique.h:435
OPERATEUR::SOMMET1
@ SOMMET1
Definition: ot_mathematique.h:435
OPERATEUR::INTERIEUR
@ INTERIEUR
Definition: ot_mathematique.h:435
DOUBLEN::DOUBLEN
DOUBLEN()
Definition: ot_mathematique.cpp:1913
OT_VECTEUR_3DD::compare_valeur
int compare_valeur(const OT_VECTEUR_3DD &mdd) const
Definition: ot_mathematique.cpp:1313
OT_VECTEUR_4DD::operator-
OT_VECTEUR_4DD operator-(const OT_VECTEUR_4DD &rkV)
Definition: ot_mathematique.cpp:1484
operator*
double operator*(const OT_VECTEUR_3D &mdd1, const OT_VECTEUR_3D &mdd2)
Definition: ot_mathematique.cpp:591
OT_VECTEUR_3D
Definition: ot_mathematique.h:94
OT_VECTEUR_4D
Definition: ot_mathematique.h:215
OPERATEUR::taille_triangle
static double taille_triangle(double *noeud1, double *noeud2, double *noeud3)
Definition: ot_mathematique.cpp:1899
OPERATEUR::SOMMET2
@ SOMMET2
Definition: ot_mathematique.h:435
OT_VECTEUR_4D::operator>
bool operator>(const OT_VECTEUR_4D &mdd) const
DOUBLEN::get_valeur
double get_valeur(int num)
Definition: ot_mathematique.cpp:1934
OT_VECTEUR_4DD::get_xyzw
virtual double2 * get_xyzw(void)
Definition: ot_mathematique.cpp:1472
OT_VECTEUR_3D::operator<
bool operator<(const OT_VECTEUR_3D &mdd) const
Definition: ot_mathematique.cpp:536
OT_VECTEUR_4DD::change_z
virtual void change_z(double2 z)
Definition: ot_mathematique.cpp:1464
OPERATEUR::doubleto2int
static void doubleto2int(double val, int &val1, int &val2)
Definition: ot_mathematique.cpp:1666
OPERATEUR::FACE4
@ FACE4
Definition: ot_mathematique.h:435
OT_VECTEUR_4DD::operator>
bool operator>(const OT_VECTEUR_4DD &mdd) const
OT_HISTOGRAMME::m_i_min
long m_i_min
Definition: ot_mathematique.h:65
OT_VECTEUR_3DD::get_xyz
virtual double2 * get_xyz(void)
Definition: ot_mathematique.cpp:1219
OT_VECTEUR_4DD::operator*
double2 operator*(const OT_VECTEUR_4DD &a)
Definition: ot_mathematique.cpp:1530
OT_VECTEUR_4DD::operator+
OT_VECTEUR_4DD operator+(const OT_VECTEUR_4DD &rkV)
Definition: ot_mathematique.cpp:1477
OT_HISTOGRAMME::get_premiere_valeur
int get_premiere_valeur(std::map< long, double >::iterator &it, double &valeur)
Definition: ot_mathematique.cpp:146
OT_VECTEUR_4D::operator-=
OT_VECTEUR_4D & operator-=(const OT_VECTEUR_4D &rkV)
Definition: ot_mathematique.cpp:1051
OT_VECTEUR_3D::operator*=
OT_VECTEUR_3D & operator*=(double fScalar)
Definition: ot_mathematique.cpp:621
OPERATEUR::SOMMET4
@ SOMMET4
Definition: ot_mathematique.h:435
OT_HISTOGRAMME::ouvrir_bin
void ouvrir_bin(std::ifstream &ifstr)
Definition: ot_mathematique.cpp:254
OT_VECTEUR_3DD::operator*
double2 operator*(const OT_VECTEUR_3DD &a)
Definition: ot_mathematique.cpp:1269
OT_VECTEUR_3DD::get_y
virtual double2 get_y(void) const
Definition: ot_mathematique.cpp:1191
OPERATEUR::SOMMET3
@ SOMMET3
Definition: ot_mathematique.h:435
OT_MATRICE_3D::get_vecteur2
OT_VECTEUR_3D & get_vecteur2(void)
Definition: ot_mathematique.cpp:818
OPERATEUR::EXTERIEUR
@ EXTERIEUR
Definition: ot_mathematique.h:435
OT_MATRICE_3D::OT_MATRICE_3D
OT_MATRICE_3D(void)
Definition: ot_mathematique.cpp:676
DOUBLEN::change_valeur
void change_valeur(int num, double val)
Definition: ot_mathematique.cpp:1939
OT_HISTOGRAMME::m_largeur_colonne
double m_largeur_colonne
Definition: ot_mathematique.h:67
OT_VECTEUR_3D::valeur
double valeur[3]
Definition: ot_mathematique.h:157
OT_VECTEUR_3DD::OT_VECTEUR_3DD
OT_VECTEUR_3DD()
Definition: ot_mathematique.h:357
OPERATEUR::qualite_triangle
static double qualite_triangle(double *noeud1, double *noeud2, double *noeud3)
Definition: ot_mathematique.cpp:1647
OT_VECTEUR_3D::get_z
virtual double get_z(void) const
Definition: ot_mathematique.cpp:429
OT_VECTEUR_3D::diff
virtual double diff(void)
Definition: ot_mathematique.cpp:656
OPERATEUR::estdansletriangle
static int estdansletriangle(double *xyz1, double *xyz2, double *xyz3, double x, double y, double z)
Definition: ot_mathematique.cpp:1802
OT_VECTEUR_4DD::operator<=
bool operator<=(const OT_VECTEUR_4DD &mdd) const
OT_VECTEUR_3D::get_longueur
virtual double get_longueur(void) const
Definition: ot_mathematique.cpp:483
OT_VECTEUR_4DD::operator+=
OT_VECTEUR_4DD & operator+=(const OT_VECTEUR_4DD &rkV)
Definition: ot_mathematique.cpp:1536
OT_VECTEUR_3DD::change_z
virtual void change_z(double2 z)
Definition: ot_mathematique.cpp:1215
OT_QUATERNION::change_x
void change_x(double x)
Definition: ot_mathematique.cpp:336
OPERATEUR::ARETE5
@ ARETE5
Definition: ot_mathematique.h:435
OPERATEUR::ARETE3
@ ARETE3
Definition: ot_mathematique.h:435
res
#define res(i, j)
OT_MATRICE_3D::operator*
friend OT_VECTEUR_3D operator*(const OT_MATRICE_3D &mdd1, const OT_VECTEUR_3D &mdd2)
Definition: ot_mathematique.cpp:839
OT_VECTEUR_3D::gram_shmidt
OT_VECTEUR_3D gram_shmidt(const OT_VECTEUR_3D &vint)
Definition: ot_mathematique.cpp:505
OT_VECTEUR_3D::operator()
double operator()(int i) const
Definition: ot_mathematique.cpp:474
OT_VECTEUR_4D::get_longueur2
virtual double get_longueur2(void) const
Definition: ot_mathematique.cpp:1617
OT_VECTEUR_4DD::operator!=
bool operator!=(const OT_VECTEUR_4DD &mdd) const
OT_VECTEUR_3DD::change_x
virtual void change_x(double2 x)
Definition: ot_mathematique.cpp:1207
OT_VECTEUR_4D::operator[]
double operator[](int i) const
Definition: ot_mathematique.cpp:924
OT_VECTEUR_4DD::norme
double2 norme()
Definition: ot_mathematique.cpp:1395
OT_MATRICE_3D::inverse
OT_MATRICE_3D inverse() const
Definition: ot_mathematique.cpp:767
OT_VECTEUR_3DD::operator/=
OT_VECTEUR_3DD & operator/=(double2 fScalar)
Definition: ot_mathematique.cpp:1297
OT_VECTEUR_3DD::operator&
OT_VECTEUR_3DD operator&(const OT_VECTEUR_3DD &v2)
Definition: ot_mathematique.cpp:1261
OT_VECTEUR_4D::change_w
virtual void change_w(double w)
Definition: ot_mathematique.cpp:983
DOUBLEN
Definition: ot_mathematique.h:457
OT_VECTEUR_4DD
Definition: ot_mathematique.h:284
lessOT_VECTEUR_4DD::operator()
bool operator()(OT_VECTEUR_4DD v1, OT_VECTEUR_4DD v2)
Definition: ot_mathematique.h:475
OT_HISTOGRAMME::get_largeur_colonne
double get_largeur_colonne(void)
Definition: ot_mathematique.cpp:85
OT_VECTEUR_4D::operator()
double operator()(int i) const
Definition: ot_mathematique.cpp:914
OT_VECTEUR_3DD::operator+=
OT_VECTEUR_3DD & operator+=(const OT_VECTEUR_3DD &rkV)
Definition: ot_mathematique.cpp:1275
OT_HISTOGRAMME::fixe_largeur_colonne
void fixe_largeur_colonne(double largeur_colonne)
Definition: ot_mathematique.cpp:80
OT_HISTOGRAMME::get_suivante_valeur
int get_suivante_valeur(std::map< long, double >::iterator &it, double &valeur)
Definition: ot_mathematique.cpp:154
OT_VECTEUR_3D::operator!=
bool operator!=(const OT_VECTEUR_3D &mdd) const
Definition: ot_mathematique.cpp:531
OT_VECTEUR_4D::valeur
double valeur[4]
Definition: ot_mathematique.h:272
OT_VECTEUR_4D::OT_VECTEUR_4D
OT_VECTEUR_4D(void)
Definition: ot_mathematique.h:222
OT_MATRICE_3D::operator<<
friend std::ostream & operator<<(std::ostream &__os, const OT_MATRICE_3D &__mat)
Definition: ot_mathematique.cpp:688
OT_VECTEUR_3D::operator+
friend OT_VECTEUR_3D operator+(const OT_VECTEUR_3D &mdd1, const OT_VECTEUR_3D &mdd2)
Definition: ot_mathematique.cpp:848
OT_VECTEUR_3DD::change_y
virtual void change_y(double2 y)
Definition: ot_mathematique.cpp:1211
OT_VECTEUR_4DD::est_nul_3d
bool est_nul_3d(void)
Definition: ot_mathematique.cpp:1601
OT_VECTEUR_4DD::x
virtual double2 & x(void)
Definition: ot_mathematique.cpp:1428
OT_VECTEUR_4DD::vecteur_norme
OT_VECTEUR_4DD vecteur_norme()
Definition: ot_mathematique.cpp:1401
OT_VECTEUR_4DD::operator()
double2 operator()(int i) const
Definition: ot_mathematique.cpp:1361
lessOT_VECTEUR_3DD
Definition: ot_mathematique.h:487
OT_MATRICE_3D::change_vecteur1
void change_vecteur1(OT_VECTEUR_3D v)
Definition: ot_mathematique.cpp:802
OT_VECTEUR_3D::change_x
virtual void change_x(double x)
Definition: ot_mathematique.cpp:434
OT_HISTOGRAMME::get_x_min
double get_x_min(void)
Definition: ot_mathematique.cpp:205
OT_VECTEUR_3DD::operator()
double2 operator()(int i) const
Definition: ot_mathematique.cpp:1126
OT_VECTEUR_4DD::z
virtual double2 & z(void)
Definition: ot_mathematique.cpp:1444
OPERATEUR::taille_tetra
static double taille_tetra(double *noeud1, double *noeud2, double *noeud3, double *noeud4)
Definition: ot_mathematique.cpp:1877
OT_HISTOGRAMME::get_x_max
double get_x_max(void)
Definition: ot_mathematique.cpp:210
OPERATEUR::FACE1
@ FACE1
Definition: ot_mathematique.h:435
OT_VECTEUR_4D::y
virtual double & y(void)
Definition: ot_mathematique.cpp:951
OT_VECTEUR_4D::operator+=
OT_VECTEUR_4D & operator+=(const OT_VECTEUR_4D &rkV)
Definition: ot_mathematique.cpp:1042
OT_VECTEUR_3DD::operator<=
bool operator<=(const OT_VECTEUR_3DD &mdd) const
OT_VECTEUR_4D::operator=
OT_VECTEUR_4D & operator=(double)
Definition: ot_mathematique.cpp:1076