~ubuntu-branches/ubuntu/wily/grass/wily

« back to all changes in this revision

Viewing changes to vector/v.vol.rst/userglobs.h

Tags: 7.0.0~rc1+ds1-1~exp1
* New upstream release candidate.
* Repack upstream tarball, remove precompiled Python objects.
* Add upstream metadata.
* Update gbp.conf and Vcs-Git URL to use the experimental branch.
* Update watch file for GRASS 7.0.
* Drop build dependencies for Tcl/Tk, add build dependencies:
  python-numpy, libnetcdf-dev, netcdf-bin, libblas-dev, liblapack-dev
* Update Vcs-Browser URL to use cgit instead of gitweb.
* Update paths to use grass70.
* Add configure options: --with-netcdf, --with-blas, --with-lapack,
  remove --with-tcltk-includes.
* Update patches for GRASS 7.
* Update copyright file, changes:
  - Update copyright years
  - Group files by license
  - Remove unused license sections
* Add patches for various typos.
* Fix desktop file with patch instead of d/rules.
* Use minimal dh rules.
* Bump Standards-Version to 3.9.6, no changes.
* Use dpkg-maintscript-helper to replace directories with symlinks.
  (closes: #776349)
* Update my email to use @debian.org address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef __USERGLOBS_H__
2
2
#define __USERGLOBS_H__
3
3
 
4
 
#include <grass/G3d.h>
5
 
#include <grass/Vect.h>
 
4
#include <grass/raster3d.h>
 
5
#include <grass/vector.h>
6
6
#include <grass/dbmi.h>
7
7
 
8
 
#ifdef USERMAIN
9
 
double /* pargr */ xmin, xmax, ymin, ymax, zmin, zmax, wmin, wmax;
10
 
double /* norm */ xmin0, xmax0, ymin0, ymax0, zmin0, zmax0, wmin0, wmax0,
11
 
    delt, dnorm;
12
 
double /* MAT */ *A;
13
 
double /* PRISP */ fi, rsm, fstar2, alphat, betat;
14
 
 
15
 
double /* out */ *b, *w;
16
 
double /* orig */ x0utm, y0utm, z0utm;
17
 
double /* gcmax */ gmin, gmax, c1min, c1max, c2min, c2max, c3min, c3max;
18
 
double /* gcmax */ a1min, a1max, a2min, a2max;
19
 
float *zero_array1, *zero_array2, *zero_array3, *zero_array4, *zero_array5,
20
 
    *zero_array6, *zero_array7;
21
 
int out_cond1, out_cond2;
22
 
double xmn, xmx, ymn, ymx, zmn, zmx;
23
 
double z_orig_in, tb_res_in;
24
 
int cursegm;
25
 
int totsegm;
26
 
int iw2;
27
 
int n_rows_in;                  /* fix by JH 04/24/02 */
28
 
int cv;
29
 
int sig1;
30
 
 
31
 
char msg[80];
32
 
 
33
 
struct Map_info Map;
34
 
dbString sql;
35
 
dbDriver *driver;
36
 
dbHandle handle;
37
 
struct field_info *f;
38
 
struct line_pnts *Pnts;
39
 
struct line_cats *Cats;
40
 
char buf[1024];
41
 
int count;
42
 
 
43
 
FILE *dev, *cvdevf;
44
 
FCELL *zero_array_cell;
45
 
G3D_Region current_region;
46
 
 
47
 
#else
48
8
extern double /* pargr */ xmin, xmax, ymin, ymax, zmin, zmax, wmin, wmax;
49
9
extern double /* norm */ xmin0, xmax0, ymin0, ymax0, zmin0, zmax0, wmin0,
50
10
    wmax0, delt, dnorm;
83
43
 
84
44
extern FILE *dev, *cvdevf;
85
45
extern FCELL *zero_array_cell;
86
 
extern G3D_Region current_region;
87
 
#endif
 
46
extern RASTER3D_Region current_region;
88
47
 
89
48
#endif