You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

39 lines
1.0 KiB

/*************
* Header file for graf.c
* 1999 E. Rouat
************/
#ifndef GRAF_H
#define GRAF_H
#include "ngspice/graph.h"
int gr_init(double *xlims, double *ylims,
char *xname, char *plotname,
char *hcopy,
int nplots,
double xdelta, double ydelta,
GRIDTYPE gridtype,
PLOTTYPE plottype,
char *xlabel, char *ylabel,
int xtype, int ytype,
char *pname, char *commandline);
void gr_point(struct dvec *dv,
double newx, double newy,
double oldx, double oldy, int np);
void gr_start(struct dvec *dv);
void gr_relinestyle(GRAPH *graph);
void drawlegend(GRAPH *graph, int plotno, struct dvec *dv);
void gr_end(struct dvec *dv);
void gr_pmsg(char *text);
void gr_clean(void);
void gr_resize(GRAPH *graph);
void gr_resize_internal(GRAPH *graph);
void gr_redraw(GRAPH *graph);
void gr_restoretext(GRAPH *graph);
void reset_trace(void);
void gr_iplot(struct plot *plot);
void gr_end_iplot(void);
double *readtics(char *string);
#endif