Doxygen Source Code Documentation
tick4.c File Reference
#include "f2c.h"Go to the source code of this file.
Defines | |
| #define | zzzplt_1 zzzplt_ |
| #define | zzpltr_1 zzpltr_ |
Functions | |
| int | tick4_ (integer *lmajx, integer *lminx, integer *lmajy, integer *lminy) |
Variables | |
| struct { | |
| real xpgmin | |
| real ypgmin | |
| real xpgmax | |
| real ypgmax | |
| real xclbot | |
| real yclbot | |
| real xcltop | |
| real ycltop | |
| real xbot | |
| real ybot | |
| real xtop | |
| real ytop | |
| real xmin | |
| real ymin | |
| real xmax | |
| real ymax | |
| integer ixcoor | |
| integer iycoor | |
| real alphxx | |
| real betaxx | |
| real alphyy | |
| real betayy | |
| real tmajx | |
| real tminx | |
| real tmajy | |
| real tminy | |
| integer majrx | |
| integer minrx | |
| integer majry | |
| integer minry | |
| integer isizx | |
| integer isizy | |
| real xphold | |
| real yphold | |
| } | zzzplt_ |
| struct { | |
| real xphmax | |
| real yphmax | |
| integer ixpmax | |
| integer iypmax | |
| real xpscal | |
| real ypscal | |
| integer iflip | |
| integer nplotr | |
| char cfile [64] | |
| } | zzpltr_ |
Define Documentation
|
|
|
|
|
Definition at line 19 of file tick4.c. Referenced by tick4_(). |
Function Documentation
|
||||||||||||||||||||
|
Definition at line 34 of file tick4.c. References scale, and zzzplt_1. Referenced by plotpak_tick4().
00036 {
00037 static real scale;
00038
00039
00040 /* Set the tick marks in units of 1/1000 the x-width */
00041 /* .......................................................................
00042 */
00043 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
00044 */
00045
00046 /* Internal Data for PLOTPAK */
00047
00048 scale = (zzzplt_1.xpgmax - zzzplt_1.xpgmin) * .001f;
00049 zzzplt_1.tmajx = scale * *lmajx;
00050 zzzplt_1.tminx = scale * *lminx;
00051 zzzplt_1.tmajy = scale * *lmajy;
00052 zzzplt_1.tminy = scale * *lminy;
00053 return 0;
00054 } /* tick4_ */
|
Variable Documentation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|