⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 graph.h

📁 ngspice又一个电子CAD仿真软件代码.功能更全
💻 H
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1988 Jeffrey M. Hsu**********//*    This file contains the graph structure.*/#ifndef _GRAPH_H#define _GRAPH_H#include "grid.h"#include "plot.h"#include "dvec.h"            /* for struct dvec *//* Device-independent data structure for plots. */#define NUMCOLORS 20typedef struct graph {    int graphid;    struct dveclist *plotdata;  /* normalized data */    char *plotname;         /* name of plot this graph is in */    int onevalue;           /* boolean variable,                       true if plotting one value                       against itself (real vs imaginary) */    int degree;     /* degree of polynomial interpretation */    int currentcolor;    int linestyle;    struct {        int height, width;    } viewport;    int viewportxoff;   /* x offset of viewport w/in graph */    int viewportyoff;   /* y offset of viewport w/in graph */    struct {        int xpos;   /* x position of graph in screen coord */        int ypos;   /* y position of graph in screen coord */        int width;  /* width of window on screen */        int height; /* height of window on screen */    } absolute;    struct {        double xmin, ymin, xmax, ymax;    } data;    struct {        double xmin, ymin, xmax, ymax;        /* cache:  width = xmax - xmin  height = ymax - ymin */        double width, height;    } datawindow;    /* note: this int is device dependent */    int colors[NUMCOLORS];    /* cache (datawindow size) / (viewport size) */    double aspectratiox, aspectratioy;    int ticmarks;           /* mark every ticmark'th point */    double *ticdata;    int fontwidth, fontheight;  /* for use in grid */    PLOTTYPE plottype;      /* defined in FTEconstant.h */    struct {      GRIDTYPE gridtype;        /* defined in FTEconstant.h */      int circular;         /* TRUE if circular plot area */      union {        struct {	        char units[16];     /* unit labels */		int	spacing, numspace;		double	distance, lowlimit, highlimit;		int	mult;		int	onedec;     /* a boolean */		int	hacked;     /* true if hi - lo already hacked up */		double	tenpowmag;		double	tenpowmagx;		int	digits;        } lin;        struct {	        char units[16];     /* unit labels */		int hmt, lmt, decsp, subs, pp;        } log;        struct {	        char units[16];     /* unit labels */		int radius, center;		double mrad;		int lmt;		int hmt, mag; /* added, p.w.h. */        } circular;     /* bogus, rework when write polar grids, etc */      } xaxis, yaxis;      int xdatatype, ydatatype;      int xsized, ysized;      double xdelta, ydelta; /* if non-zero, user-specified deltas */      char *xlabel, *ylabel;    } grid;    int numbuttons;     /* number of buttons */    struct {      int id;      char *message;    } *buttons;    int buttonsxoff;    /* viewportxoff + x size of viewport */    int buttonsyoff;    struct {      int width, height;      char message[161];        /* two lines of text */    } messagebox;    int messagexoff;    int messageyoff;    /* characters the user typed on graph *//* note: think up better names */    struct _keyed {      char *text;      int x, y;      int colorindex;       /* index into colors array */      struct _keyed *next;    } *keyed;    /* for zoomin */    char *commandline;    /* Space here is allocated by NewViewport        and de-allocated by DestroyGraph.    */    char *devdep;} GRAPH;#define NEWGRAPH (GRAPH *) tmalloc(sizeof(GRAPH))#define rnd(x)  (int) ((x)+0.5)#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -