ngspice/src/frontend/postsc.h

22 lines
473 B
C
Raw Normal View History

2000-04-27 22:03:57 +02:00
/*************
* Header file for postsc.c
* 1999 E. Rouat
************/
#ifndef POSTSC_H_INCLUDED
#define POSTSC_H_INCLUDED
int PS_Init(void);
int PS_NewViewport(GRAPH *graph);
int PS_Close(void);
int PS_Clear(void);
int PS_DrawLine(int x1, int y1, int x2, int y2);
int PS_Arc(int x0, int y0, int r, double theta1, double theta2);
int PS_Text(char *text, int x, int y);
2000-04-27 22:03:57 +02:00
int PS_SetLinestyle(int linestyleid);
int PS_SetColor(int colorid);
int PS_Update(void);
2000-04-27 22:03:57 +02:00
#endif