~ubuntu-branches/ubuntu/intrepid/plplot/intrepid

« back to all changes in this revision

Viewing changes to bindings/octave/plplot_octave.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2006-11-04 10:19:34 UTC
  • mfrom: (2.1.8 edgy)
  • Revision ID: james.westby@ubuntu.com-20061104101934-mlirvdg4gpwi6i5q
Tags: 5.6.1-10
* Orphaning the package
* debian/control: Changed the maintainer to the Debian QA Group

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: plplot_octave.h.in,v 1.3 2004/01/18 21:41:57 rlaboiss Exp $
 
1
/* $Id: plplot_octave.h.in,v 1.7 2006/04/29 22:52:54 hbabcock Exp $
2
2
 * jc: this is a massaged plplot.h
3
3
 *
4
4
 * Copyright (C) 2004  Joao Cardoso
17
17
 *
18
18
 * You should have received a copy of the GNU General Public License
19
19
 * along with PLplot_Octave; if not, write to the Free Software
20
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21
21
 */
22
22
 
23
23
/*
222
222
 
223
223
/* Obsolete names */
224
224
 
225
 
#define plParseInternalOpts(a, b, c)    plParseOpts(a, b, c)
 
225
#define plParseInternalOpts(a, b, c)    plparseopts(a, b, c)
226
226
#define plSetInternalOpt(a, b)          plSetOpt(a, b)
227
227
 
228
228
/* Option table definition */
468
468
#define    plgzax       c_plgzax
469
469
#define    plhist       c_plhist
470
470
#define    plhls        c_plhls
 
471
#define    plhlsrgb     c_plhlsrgb
471
472
#define    plinit       c_plinit
472
473
#define    pljoin       c_pljoin
473
474
#define    pllab        c_pllab
481
482
#define    plmtex       c_plmtex
482
483
#define    plot3d       c_plot3d
483
484
#define    plot3dc      c_plot3dc
 
485
#define    plparseopts  c_plparseopts
484
486
#define    plsurf3d     c_plsurf3d
485
487
#define    plpat        c_plpat
486
488
#define    plpoin       c_plpoin
492
494
#define    plreplot     c_plreplot
493
495
#define    plrgb        c_plrgb
494
496
#define    plrgb1       c_plrgb1
 
497
#define    plrgbhls     c_plrgbhls
495
498
#define    plschr       c_plschr
496
499
#define    plscmap0     c_plscmap0
497
500
#define    plscmap1     c_plscmap1
1437
1440
 
1438
1441
/* Process options list using current options info. */
1439
1442
 
1440
 
int plParseOpts(int *p_argc, char **argv, PLINT mode); //%novectorize
 
1443
int plparseopts(int *p_argc, char **argv, PLINT mode); //%novectorize
1441
1444
 
1442
1445
/* Print usage & syntax message. */
1443
1446
 
1494
1497
 
1495
1498
/* Functions for converting between HLS and RGB color space */
1496
1499
 
1497
 
void plHLS_RGB(PLFLT h, PLFLT l, PLFLT s, PLFLT *p_r, PLFLT *p_g, PLFLT *p_b); //%output p_r, p_g, p_b
 
1500
void plhlsrgb(PLFLT h, PLFLT l, PLFLT s, PLFLT *p_r, PLFLT *p_g, PLFLT *p_b); //%output p_r, p_g, p_b
1498
1501
 
1499
 
void plRGB_HLS(PLFLT r, PLFLT g, PLFLT b, PLFLT *p_h, PLFLT *p_l, PLFLT *p_s); //%output p_h, p_l, p_s
 
1502
void plrgbhls(PLFLT r, PLFLT g, PLFLT b, PLFLT *p_h, PLFLT *p_l, PLFLT *p_s); //%output p_h, p_l, p_s
1500
1503
 
1501
1504
/* Wait for graphics input event and translate to world coordinates */
1502
1505