~ubuntu-branches/ubuntu/oneiric/python-scipy/oneiric-proposed

« back to all changes in this revision

Viewing changes to scipy/sandbox/xplt/src/gist/style.h

  • Committer: Bazaar Package Importer
  • Author(s): Ondrej Certik
  • Date: 2008-06-16 22:58:01 UTC
  • mfrom: (2.1.24 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080616225801-irdhrpcwiocfbcmt
Tags: 0.6.0-12
* The description updated to match the current SciPy (Closes: #489149).
* Standards-Version bumped to 3.8.0 (no action needed)
* Build-Depends: netcdf-dev changed to libnetcdf-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *     STYLE.H
 
3
 *
 
4
 *         Declare functions and structs in style.c
 
5
 *
 
6
 */
 
7
 
 
8
/*    Copyright (c) 1994.  The Regents of the University of California.
 
9
 *                        All rights reserved.  */
 
10
 
 
11
 
 
12
 
 
13
#include "draw.h"
 
14
 
 
15
typedef struct GfakeSystem GfakeSystem;
 
16
struct GfakeSystem {
 
17
  double viewport[4];    /* [xmin,xmax,ymin,ymax] in NDC coordinates */
 
18
  GaTickStyle ticks;     /* tick style for this coordinate system */
 
19
  char *legend;          /* e.g.- "System 0" or "System 1", p_malloc */
 
20
};
 
21
 
 
22
extern int raw_style(long nsys, int *landscape,
 
23
                     GfakeSystem *systems, GeLegendBox *legends);