[BACK]Return to plotnull.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / pari-2.2 / src / graph

Annotation of OpenXM_contrib/pari-2.2/src/graph/plotnull.c, Revision 1.1

1.1     ! noro        1: /* $Id: plotnull.c,v 1.3 2000/11/03 21:00:24 karim Exp $
        !             2:
        !             3: Copyright (C) 2000  The PARI group.
        !             4:
        !             5: This file is part of the PARI/GP package.
        !             6:
        !             7: PARI/GP is free software; you can redistribute it and/or modify it under the
        !             8: terms of the GNU General Public License as published by the Free Software
        !             9: Foundation. It is distributed in the hope that it will be useful, but WITHOUT
        !            10: ANY WARRANTY WHATSOEVER.
        !            11:
        !            12: Check the License for details. You should have received a copy of it, along
        !            13: with the package; see the file 'COPYING'. If not, write to the Free Software
        !            14: Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
        !            15:
        !            16: #include "pari.h"
        !            17:
        !            18: void
        !            19: rectdraw0(long *w, long *x, long *y, long lw, long do_free)
        !            20: {
        !            21:   (void)w;
        !            22:   (void)x;
        !            23:   (void)y;
        !            24:   (void)lw;
        !            25:   (void)do_free;
        !            26: }
        !            27:
        !            28: long
        !            29: term_set(char *s) { (void)s; return 1; }
        !            30:
        !            31: void
        !            32: PARI_get_plot(long f)
        !            33: {
        !            34:   (void)f;
        !            35:   err(talker,"high resolution graphics disabled");
        !            36: }
        !            37:
        !            38: long
        !            39: plot_outfile_set(char *s) { (void)s; return 1; }
        !            40:
        !            41: void
        !            42: set_pointsize(double d) { (void)d; }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>