LORENE
graphique_vtk.h
1/*
2 * Prototypes of graphical routines
3 *
4 */
5
6
7#ifndef __GRAPHIQUE_VTK_H_
8#define __GRAPHIQUE_VTK_H_
9
10#ifndef DOXYGEN_SHOULD_SKIP_THIS
11
12namespace Lorene {
13class Scalar ;
14class Map ;
15
16#endif /* DOXYGEN_SHOULD_SKIP_THIS */
17
24/*
25 * The following are routines used to save Lorene data in the vtk format
26 * for use with VisIt
27 *
28 */
29
49void des_coupe_vtk_x(const Scalar& uu, double x0, int nzdes, const char* title = 0x0,
50 double zoom = 1.2, int ny = 100, int nz = 100) ;
51
69void des_coupe_vtk_x(const Scalar& uu, double x0, double y_min, double y_max,
70 double z_min, double z_max, const char* title = 0x0,
71 int ny = 100, int nz = 100) ;
72
92void des_coupe_vtk_y(const Scalar& uu, double y0, int nzdes, const char* title = 0x0,
93 double zoom = 1.2, int nx = 100, int nz = 100) ;
94
112void des_coupe_vtk_y(const Scalar& uu, double y0, double x_min, double x_max,
113 double z_min, double z_max, const char* title = 0x0,
114 int nx = 100, int nz = 100) ;
115
135void des_coupe_vtk_z(const Scalar& uu, double z0, int nzdes, const char* title = 0x0,
136 double zoom = 1.2, int nx = 100, int ny = 100) ;
137
155void des_coupe_vtk_z(const Scalar& uu, double z0, double x_min, double x_max,
156 double y_min, double y_max, const char* title = 0x0,
157 int nx = 100, int ny = 100) ;
158
172void des_vtk_xyz(const Scalar& uu, int nzdes, const char* title = 0x0,
173 int nx = 100, int ny = 100, int nz = 100) ;
174
190void des_vtk_xyz(const Scalar& uu, double x_min, double x_max,
191 double y_min, double y_max, double z_min, double z_max,
192 const char* title = 0x0, int nx = 100, int ny = 100, int nz = 100) ;
193
196}
197#endif
void des_coupe_vtk_x(const Scalar &uu, double x0, int nzdes, const char *title=0x0, double zoom=1.2, int ny=100, int nz=100)
Saves the data for a Scalar in the plane X=constant.
void des_coupe_vtk_z(const Scalar &uu, double z0, int nzdes, const char *title=0x0, double zoom=1.2, int nx=100, int ny=100)
Saves the data for a Scalar in the plane Z=constant.
void des_vtk_xyz(const Scalar &uu, int nzdes, const char *title=0x0, int nx=100, int ny=100, int nz=100)
Saves a three dimensional Scalar.
void des_coupe_vtk_y(const Scalar &uu, double y0, int nzdes, const char *title=0x0, double zoom=1.2, int nx=100, int nz=100)
Saves the data for a Scalar in the plane Y=constant.
Lorene prototypes.
Definition app_hor.h:64