MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
magic_plot.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 //####// magic_plot.h
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:58:57 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 #ifndef MAGIC_PLOT_H
23 #define MAGIC_PLOT_H
24 #include "ot_tenseur.h"
25 
26 
28 {
29 public:
30 MAGIC_PLOT();
31 ~MAGIC_PLOT();
32 
33 enum COULEUR{ROUGE=0,VERT=1,JAUNE=2,BLEU=3,VIOLET=4,GRIS=5};
34 
35 void plot_tenseur(int num,OT_TENSEUR tens1,OT_TENSEUR tens2,std::string output,bool aveccouleur=false);
36 void plot_script_tenseur(int num,OT_TENSEUR tens1,OT_TENSEUR tens2,std::string output,bool aveccouleur=false);
37 
38 void plot_histogramme(std::string data_histogramme,std::string output,bool aveccouleur=false);
39 void plot_script_histogramme(std::string data_histogramme,std::string output,bool aveccouleur=false);
40 
41 
43 std::string tenseur_titre;
45 std::string tenseur_format1;
46 std::string tenseur_format2;
50 
51 
53 std::string histogramme_titre;
57 
58 
59 
60 
61 
62 
63 
64 
65 
66 
67 };
68 
69 #endif // MAGIC_PLOT_H
MAGIC_PLOT::plot_tenseur
void plot_tenseur(int num, OT_TENSEUR tens1, OT_TENSEUR tens2, std::string output, bool aveccouleur=false)
Definition: magic_plot.cpp:50
MAGIC_PLOT::tenseur_maxbarcouleur
double tenseur_maxbarcouleur
Definition: magic_plot.h:48
MAGIC_PLOT::JAUNE
@ JAUNE
Definition: magic_plot.h:33
MAGIC_PLOT::VERT
@ VERT
Definition: magic_plot.h:33
MAGIC_PLOT::histogramme_titre
std::string histogramme_titre
Definition: magic_plot.h:53
MAGIC_PLOT::~MAGIC_PLOT
~MAGIC_PLOT()
Definition: magic_plot.cpp:46
MAGIC_PLOT::tenseur_format1
std::string tenseur_format1
Definition: magic_plot.h:45
MAGIC_PLOT::plot_histogramme
void plot_histogramme(std::string data_histogramme, std::string output, bool aveccouleur=false)
Definition: magic_plot.cpp:139
MAGIC_PLOT::tenseur_titrebarcouleur
std::string tenseur_titrebarcouleur
Definition: magic_plot.h:44
MAGIC_PLOT::ROUGE
@ ROUGE
Definition: magic_plot.h:33
OT_TENSEUR
Definition: ot_tenseur.h:41
MAGIC_PLOT::tenseur_nom_fichier_eps
std::string tenseur_nom_fichier_eps
Definition: magic_plot.h:49
MAGIC_PLOT::tenseur_titre
std::string tenseur_titre
Definition: magic_plot.h:43
MAGIC_PLOT::GRIS
@ GRIS
Definition: magic_plot.h:33
MAGIC_PLOT::tenseur_minbarcouleur
double tenseur_minbarcouleur
Definition: magic_plot.h:47
MAGIC_PLOT::MAGIC_PLOT
MAGIC_PLOT()
Definition: magic_plot.cpp:28
MAGIC_PLOT::plot_script_tenseur
void plot_script_tenseur(int num, OT_TENSEUR tens1, OT_TENSEUR tens2, std::string output, bool aveccouleur=false)
Definition: magic_plot.cpp:60
ot_tenseur.h
MAGIC_PLOT::BLEU
@ BLEU
Definition: magic_plot.h:33
MAGIC_PLOT::VIOLET
@ VIOLET
Definition: magic_plot.h:33
MAGIC_PLOT
Definition: magic_plot.h:27
MAGIC_PLOT::tenseur_couleur
int tenseur_couleur
Definition: magic_plot.h:42
MAGIC_PLOT::tenseur_format2
std::string tenseur_format2
Definition: magic_plot.h:46
MAGIC_PLOT::histogramme_nom_fichier_eps
std::string histogramme_nom_fichier_eps
Definition: magic_plot.h:54
MAGIC_PLOT::COULEUR
COULEUR
Definition: magic_plot.h:33
MAGIC_PLOT::histogramme_axeX_nom
std::string histogramme_axeX_nom
Definition: magic_plot.h:55
MAGIC_PLOT::plot_script_histogramme
void plot_script_histogramme(std::string data_histogramme, std::string output, bool aveccouleur=false)
Definition: magic_plot.cpp:147
MAGIC_PLOT::histogramme_couleur
int histogramme_couleur
Definition: magic_plot.h:52
MAGIC_PLOT::histogramme_axeY_nom
std::string histogramme_axeY_nom
Definition: magic_plot.h:56