PLplot
5.15.0
|
#include "plConfig.h"
#include <ctype.h>
#include <math.h>
#include <string.h>
#include <limits.h>
#include <float.h>
#include <locale.h>
#include "pldll.h"
#include "plplot.h"
#include "plstrm.h"
#include "pldebug.h"
Go to the source code of this file.
Classes | |
struct | Hershey_to_Unicode_table |
struct | EscText |
struct | DrvOpt |
struct | cont_line |
struct | cont_level |
struct | arc_struct |
struct | IMG_DT |
struct | FCI_to_FontName_Table |
Macros | |
#define | M_PI 3.14159265358979323846 |
#define | FPOS_T long |
#define | pl_fsetpos(a, b) fseek( a, *b, 0 ) |
#define | pl_fgetpos(a, b) ( -1L == ( *b = ftell( a ) ) ) |
#define | TRUE 1 |
#define | FALSE 0 |
#define | free_mem(a) if ( a != NULL ) { free( (void *) a ); a = NULL; } |
#define | plsetvar(a, b) if ( b != PL_NOTSET ) a = b; |
#define | MAX(a, b) ( ( ( a ) > ( b ) ) ? ( a ) : ( b ) ) |
#define | MIN(a, b) ( ( ( a ) < ( b ) ) ? ( a ) : ( b ) ) |
#define | ABS(a) ( ( a ) < 0 ? -( a ) : ( a ) ) |
#define | ROUND(a) (PLINT) ( ( a ) < 0. ? ( ( a ) - .5 ) : ( ( a ) + .5 ) ) |
#define | BETW(ix, ia, ib) ( ( ( ix ) <= ( ia ) && ( ix ) >= ( ib ) ) || ( ( ix ) >= ( ia ) && ( ix ) <= ( ib ) ) ) |
#define | SSQR(a, b) sqrt( ( a ) * ( a ) + ( b ) * ( b ) ) |
#define | SIGN(a) ( ( a ) < 0 ? -1 : 1 ) |
#define | TRANSFORM(x, y, xnew, ynew) if ( plsc->coordinate_transform ) { plsc->coordinate_transform( ( x ), ( y ), ( xnew ), ( ynew ), plsc->coordinate_transform_data ); } else { *xnew = x; *ynew = y; } |
#define | PL_UNDEFINED -9999999 |
#define | snprintf plsnprintf |
#define | snscanf plsnscanf |
#define | isnan(x) ( ( x ) != ( x ) ) |
#define | isinf(x) ( !isnan( x ) && isnan( x - x ) ) |
#define | isfinite(x) ( !isnan( x - x ) ) |
#define | HUGE_VAL ( 1.0 / 0.0 ) |
#define | PL_MAXPOLY 256 |
#define | PL_NSTREAMS 100 |
#define | PL_RGB_COLOR -1 |
#define | TEXT_MODE 0 |
#define | GRAPHICS_MODE 1 |
#define | PI 3.1415926535897932384 |
#define | PIXELS_X 32768 |
#define | PIXELS_Y 24576 |
#define | DPMM 4. |
#define | VDPMM ( DPMM * 32 ) |
#define | LPAGE_X ( PIXELS_X / VDPMM ) |
#define | LPAGE_Y ( PIXELS_Y / VDPMM ) |
#define | PLPLOT_MM_PER_INCH 25.4 |
#define | PLPLOT_POINTS_PER_INCH 72. |
#define | PLPLOT_WIDTH_A4_MM 297. |
#define | PLPLOT_HEIGHT_A4_MM 210. |
#define | PLPLOT_WIDTH_A5_MM 210. |
#define | PLPLOT_HEIGHT_A5_MM 148. |
#define | PLPLOT_DEFAULT_PIXELS_PER_INCH 90. |
#define | PLPLOT_DEFAULT_WIDTH_PIXELS ( (int) ( PLPLOT_WIDTH_A5_MM * PLPLOT_DEFAULT_PIXELS_PER_INCH / PLPLOT_MM_PER_INCH ) ) |
#define | PLPLOT_DEFAULT_HEIGHT_PIXELS ( (int) ( PLPLOT_HEIGHT_A5_MM * PLPLOT_DEFAULT_PIXELS_PER_INCH / PLPLOT_MM_PER_INCH ) ) |
#define | PLPLOT_DEFAULT_WIDTH_MM ( (int) ( PLPLOT_WIDTH_A4_MM ) |
#define | PLPLOT_DEFAULT_HEIGHT_MM ( (int) ( PLPLOT_HEIGHT_A4_MM ) |
#define | PLPLOT_DEFAULT_WIDTH_POINTS ( (int) ( PLPLOT_WIDTH_A4_MM * PLPLOT_POINTS_PER_INCH / PLPLOT_MM_PER_INCH ) ) |
#define | PLPLOT_DEFAULT_HEIGHT_POINTS ( (int) ( PLPLOT_HEIGHT_A4_MM * PLPLOT_POINTS_PER_INCH / PLPLOT_MM_PER_INCH ) ) |
#define | ORIENTATION 3 |
#define | PLSTATE_WIDTH 1 |
#define | PLSTATE_COLOR0 2 |
#define | PLSTATE_COLOR1 3 |
#define | PLSTATE_FILL 4 |
#define | PLSTATE_CMAP0 5 |
#define | PLSTATE_CMAP1 6 |
#define | PLSTATE_CHR 7 |
#define | PLSTATE_SYM 8 |
#define | PLSTATE_EOFILL 9 |
#define | PLDI_MAP 0x01 |
#define | PLDI_ORI 0x02 |
#define | PLDI_PLT 0x04 |
#define | PLDI_DEV 0x08 |
#define | PL_FILESIZE_KB 1000 |
#define | PLPLOT5_FONTS |
#define | PL_XFONT "plxtnd5.fnt" |
#define | PL_SFONT "plstnd5.fnt" |
#define | PLPLOT_BIN_ENV "PLPLOT_BIN" |
#define | PLPLOT_LIB_ENV "PLPLOT_LIB" |
#define | PLPLOT_TCL_ENV "PLPLOT_TCL" |
#define | PLPLOT_HOME_ENV "PLPLOT_HOME" |
#define | PLPLOT_MAX_PATH 1024 |
#define | NAFFINE 6 |
#define | LINE_ITEMS 20 |
Typedefs | |
typedef struct cont_line | CONT_LINE |
typedef struct cont_level | CONT_LEVEL |
Enumerations | |
enum | { AT_BOP, DRAWING, AT_EOP } |
enum | { DRV_INT, DRV_FLT, DRV_STR } |
Variables | |
int | number_of_entries_in_hershey_to_unicode_table |
Hershey_to_Unicode_table | hershey_to_unicode_lookup_table [] |
const char | plP_greek_mnemonic [] |
#define BETW | ( | ix, | |
ia, | |||
ib | |||
) | ( ( ( ix ) <= ( ia ) && ( ix ) >= ( ib ) ) || ( ( ix ) >= ( ia ) && ( ix ) <= ( ib ) ) ) |
#define free_mem | ( | a | ) | if ( a != NULL ) { free( (void *) a ); a = NULL; } |
#define MAX | ( | a, | |
b | |||
) | ( ( ( a ) > ( b ) ) ? ( a ) : ( b ) ) |
#define MIN | ( | a, | |
b | |||
) | ( ( ( a ) < ( b ) ) ? ( a ) : ( b ) ) |
#define pl_fgetpos | ( | a, | |
b | |||
) | ( -1L == ( *b = ftell( a ) ) ) |
#define PLPLOT_DEFAULT_HEIGHT_MM ( (int) ( PLPLOT_HEIGHT_A4_MM ) |
#define PLPLOT_DEFAULT_HEIGHT_PIXELS ( (int) ( PLPLOT_HEIGHT_A5_MM * PLPLOT_DEFAULT_PIXELS_PER_INCH / PLPLOT_MM_PER_INCH ) ) |
#define PLPLOT_DEFAULT_HEIGHT_POINTS ( (int) ( PLPLOT_HEIGHT_A4_MM * PLPLOT_POINTS_PER_INCH / PLPLOT_MM_PER_INCH ) ) |
#define PLPLOT_DEFAULT_WIDTH_MM ( (int) ( PLPLOT_WIDTH_A4_MM ) |
#define PLPLOT_DEFAULT_WIDTH_PIXELS ( (int) ( PLPLOT_WIDTH_A5_MM * PLPLOT_DEFAULT_PIXELS_PER_INCH / PLPLOT_MM_PER_INCH ) ) |
#define PLPLOT_DEFAULT_WIDTH_POINTS ( (int) ( PLPLOT_WIDTH_A4_MM * PLPLOT_POINTS_PER_INCH / PLPLOT_MM_PER_INCH ) ) |
#define ROUND | ( | a | ) | (PLINT) ( ( a ) < 0. ? ( ( a ) - .5 ) : ( ( a ) + .5 ) ) |
#define snprintf plsnprintf |
#define SSQR | ( | a, | |
b | |||
) | sqrt( ( a ) * ( a ) + ( b ) * ( b ) ) |
#define TRANSFORM | ( | x, | |
y, | |||
xnew, | |||
ynew | |||
) | if ( plsc->coordinate_transform ) { plsc->coordinate_transform( ( x ), ( y ), ( xnew ), ( ynew ), plsc->coordinate_transform_data ); } else { *xnew = x; *ynew = y; } |
typedef struct cont_level CONT_LEVEL |
void cont_clean_store | ( | CONT_LEVEL * | ct | ) |
void cont_store | ( | PLFLT_MATRIX | f, |
PLINT | nx, | ||
PLINT | ny, | ||
PLINT | kx, | ||
PLINT | lx, | ||
PLINT | ky, | ||
PLINT | ly, | ||
PLFLT_VECTOR | clevel, | ||
PLINT | nlevel, | ||
void(*)(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer) | pltr, | ||
PLPointer | pltr_data, | ||
CONT_LEVEL ** | contour | ||
) |
PLDLLIMPEXP void difilt_clip | ( | PLINT * | , |
PLINT * | |||
) |
void label_box_custom | ( | PLCHAR_VECTOR | xopt, |
PLINT | n_xticks, | ||
PLFLT_VECTOR | xticks, | ||
PLCHAR_VECTOR | yopt, | ||
PLINT | n_yticks, | ||
PLFLT_VECTOR | yticks | ||
) |
PLDLLIMPEXP void pl_cpcolor | ( | PLColor * | to, |
PLColor * | from | ||
) |
PLDLLIMPEXP char* pl_create_tempfifo | ( | const char ** | p_fifoname, |
const char ** | p_dirname | ||
) |
PLDLLIMPEXP FILE* pl_create_tempfile | ( | char ** | fname | ) |
void pl_exit | ( | void | ) |
PLDLLIMPEXP void plabort | ( | PLCHAR_VECTOR | errormsg | ) |
Much the same as plwarn(), but appends ", aborting operation" to the error message. Helps to keep source code uncluttered and provides a convention for error aborts.
If cleanup needs to be done in the main program, the user should write his/her own exit handler and pass it in via plsabort().
errormsg | The error message. |
PLDLLIMPEXP void plcmap1_calc | ( | void | ) |
PLDLLIMPEXP_DATA | ( | PLStream * | ) |
PLDLLIMPEXP void plexit | ( | PLCHAR_VECTOR | errormsg | ) |
In case of an abort this routine is called. It just prints out an error message and tries to clean up as much as possible. It's best to turn off pause and then restore previous setting before returning.
If cleanup needs to be done in the main program, the user should write his/her own exit handler and pass it in via plsexit(). This function should should either call plend() before exiting, or simply return.
errormsg | The error message. |
PLDLLIMPEXP void plfill_soft | ( | short * | x, |
short * | y, | ||
PLINT | npts | ||
) |
PLDLLIMPEXP void plfvect | ( | PLFLT(*)(PLINT, PLINT, PLPointer) | plf2eval, |
PLPointer | f2evalv_data, | ||
PLPointer | f2evalc_data, | ||
PLINT | nx, | ||
PLINT | ny, | ||
PLFLT | scale, | ||
void(*)(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer) | pltr, | ||
PLPointer | pltr_data | ||
) |
void plHelpDrvOpts | ( | DrvOpt * | acc_opt | ) |
void plimageslow | ( | PLFLT * | idata, |
PLINT | nx, | ||
PLINT | ny, | ||
PLFLT | xmin, | ||
PLFLT | ymin, | ||
PLFLT | dx, | ||
PLFLT | dy, | ||
void(*)(PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer) | pltr, | ||
PLPointer | pltr_data | ||
) |
PLDLLIMPEXP int plInBuildTree | ( | void | ) |
PLDLLIMPEXP void pllib_devinit | ( | void | ) |
PLDLLIMPEXP void pllib_init | ( | void | ) |
FILE* plLibOpen | ( | PLCHAR_VECTOR | fn | ) |
PLDLLIMPEXP void plP_affine_identity | ( | PLFLT * | affine_vector | ) |
Returns affine identity matrix
affine_vector | Initialize a (pre-allocated) transform matrix. |
Definition at line 56 of file plaffine.c.
PLDLLIMPEXP void plP_affine_multiply | ( | PLFLT * | affine_vectorA, |
PLFLT_VECTOR | affine_vectorB, | ||
PLFLT_VECTOR | affine_vectorC | ||
) |
Multiply two affine transformation matrices to form a third.
A = B * C
affine_vectorA | Pre-allocated storage for the result of multiplying matrix affine_vectorB by matrix affine_vectorC. |
affine_vectorB | First matrix to multiply. |
affine_vectorC | Second matrix to multiply. |
Definition at line 184 of file plaffine.c.
PLDLLIMPEXP void plP_affine_rotate | ( | PLFLT * | affine_vector, |
PLFLT | angle | ||
) |
Rotate new coordinate system axes relative to the old. angle is in degrees.
affine_vector | Pre-allocated storage for a rotation matrix. |
angle | Amount to rotate in degrees. |
Definition at line 123 of file plaffine.c.
PLDLLIMPEXP void plP_affine_scale | ( | PLFLT * | affine_vector, |
PLFLT | xscale, | ||
PLFLT | yscale | ||
) |
Scale new coordinate system axes relative to the old.
affine_vector | Pre-allocate storage for a scale matrix. |
xscale | Amount to scale in x. |
yscale | Amount to scale in y. |
Definition at line 93 of file plaffine.c.
PLDLLIMPEXP void plP_affine_translate | ( | PLFLT * | affine_vector, |
PLFLT | xtranslate, | ||
PLFLT | ytranslate | ||
) |
Translate new coordinate system axes relative to the old.
affine_vector | Pre-allocated storage for a translation matrix. |
xtranslate | Amount to translate in x. |
ytranslate | Amount to translate in y. |
Definition at line 73 of file plaffine.c.
PLDLLIMPEXP void plP_affine_xskew | ( | PLFLT * | affine_vector, |
PLFLT | angle | ||
) |
Skew new X coordinate axis relative to the old. angle is in degrees.
affine_vector | Pre-allocated storage for a skew (in x) matrix. |
angle | Amount to skew in degrees. |
Definition at line 143 of file plaffine.c.
PLDLLIMPEXP void plP_affine_yskew | ( | PLFLT * | affine_vector, |
PLFLT | angle | ||
) |
Skew new Y coordinate axis relative to the old. angle is in degrees.
affine_vector | Pre-allocated storage for a skew (in y) matrix. |
angle | Amount to skew in degrees. |
Definition at line 162 of file plaffine.c.
PLDLLIMPEXP void plP_bop | ( | void | ) |
void plP_drawor_poly | ( | PLFLT_VECTOR | x, |
PLFLT_VECTOR | y, | ||
PLINT | n | ||
) |
PLDLLIMPEXP void plP_eop | ( | void | ) |
PLDLLIMPEXP void plP_esc | ( | PLINT | op, |
void * | ptr | ||
) |
PLDLLIMPEXP const char* plP_FCI2FontName | ( | PLUNICODE | fci, |
const FCI_to_FontName_Table | lookup[], | ||
const int | nlookup | ||
) |
PLDLLIMPEXP void plP_fci2hex | ( | PLUNICODE | fci, |
unsigned char * | phexdigit, | ||
unsigned char | hexpower | ||
) |
PLDLLIMPEXP void plP_fill | ( | short * | x, |
short * | y, | ||
PLINT | npts | ||
) |
void plP_FreeDrvOpts | ( | void | ) |
void PLDLLIMPEXP plP_getinitdriverlist | ( | char * | names | ) |
PLDLLIMPEXP void plP_gphy | ( | PLINT * | p_ixmin, |
PLINT * | p_ixmax, | ||
PLINT * | p_iymin, | ||
PLINT * | p_iymax | ||
) |
PLDLLIMPEXP void plP_gpixmm | ( | PLFLT * | p_x, |
PLFLT * | p_y | ||
) |
PLDLLIMPEXP void plP_gsub | ( | PLINT * | p_nx, |
PLINT * | p_ny, | ||
PLINT * | p_cs | ||
) |
void plP_hex2fci | ( | unsigned char | hexdigit, |
unsigned char | hexpower, | ||
PLUNICODE * | pfci | ||
) |
int plP_pointinpolygon | ( | PLINT | n, |
PLFLT_VECTOR | x, | ||
PLFLT_VECTOR | y, | ||
PLFLT | xp, | ||
PLFLT | yp | ||
) |
PLDLLIMPEXP void plP_script_scale | ( | PLBOOL | ifupper, |
PLINT * | level, | ||
PLFLT * | old_scale, | ||
PLFLT * | scale, | ||
PLFLT * | old_offset, | ||
PLFLT * | offset | ||
) |
Calculate scale of font size and scale of magnitude of vertical offset associated with superscripts and subscripts. Notes on arguments: ifupper must be either TRUE or FALSE on every call to plP_script_scale. The contents of the location pointed to by the level pointer must be zero on the first call to plP_script_scale, but not modified externally from then on. The contents of the locations pointed to by all other pointer arguments are initialized internally, and should not be modified externally.
ifupper | Value which is TRUE if superscripting, i.e., if incrementing the previous level, and FALSE if subscripting, i.e., decrementing the previous level. |
level | Pointer to a location which contains the value of the superscript/subscript level. That value is 0, +-1, +-2, etc., for no superscript/subscript, the first level of superscript/subscript, the second level of superscript/subscript, etc. Before the call the value is the old level, and after the call the value will be incremented (ifupper TRUE) or decremented (ifupper FALSE) from the previous value. |
old_scale | A pointer to a location that contains after the call the old font size scale value. |
scale | A pointer to a location that contains after the call the font size scale value. This value is 0.75^{|level|} where |level| is the magnitude of the value of the superscript/subscript level after the call. |
old_offset | A pointer to a location that contains after the call the old value of the magnitude of the superscript/subscript offset. |
offset | A pointer to a location that contains after the call the value of the magnitude of the superscript/subscript offset which is zero for |level|=0 and sum_{i=1}^{i=|level|} 0.75^{i-1}, otherwise. |
PLDLLIMPEXP void plP_setphy | ( | PLINT | xmin, |
PLINT | xmax, | ||
PLINT | ymin, | ||
PLINT | ymax | ||
) |
PLDLLIMPEXP void plP_setpxl | ( | PLFLT | xpmm0, |
PLFLT | ypmm0 | ||
) |
PLDLLIMPEXP void plP_setsub | ( | void | ) |
PLDLLIMPEXP void plP_ssub | ( | PLINT | nx, |
PLINT | ny, | ||
PLINT | cs | ||
) |
PLDLLIMPEXP void plP_state | ( | PLINT | op | ) |
PLINT plP_stindex | ( | PLCHAR_VECTOR | str1, |
PLCHAR_VECTOR | str2 | ||
) |
PLDLLIMPEXP PLINT plP_strpos | ( | PLCHAR_VECTOR | str, |
int | chr | ||
) |
PLBOOL plP_stsearch | ( | PLCHAR_VECTOR | str, |
int | chr | ||
) |
void plP_subpInit | ( | void | ) |
PLDLLIMPEXP void plP_wait | ( | void | ) |
PLDLLIMPEXP int plParseDrvOpts | ( | DrvOpt * | acc_opt | ) |
PLDLLIMPEXP void plreadmetafile | ( | char * | infile | ) |
Reads a PLplot metafile and uses the current plot stream to display the contents. If the plot stream has not been initialized, this routine will attempt to intialize the plot stream via a plinit() call. For an initialized plot stream, the metafile will start at the current page/subpage.
infile | Input PLplot metafile name. |
Pass NULL for infile to use the filename passed from the command line option -mfi.
Returns void
Definition at line 1122 of file plmetafile.c.
PLDLLIMPEXP void plrestore_locale | ( | char * | saved_lc_numeric_locale | ) |
PLDLLIMPEXP void plRotationShear | ( | PLFLT * | xFormMatrix, |
PLFLT * | rotation, | ||
PLFLT * | shear, | ||
PLFLT * | stride | ||
) |
PLDLLIMPEXP char* plsave_set_locale | ( | void | ) |
Save LC_NUMERIC locale in a string. The pointer to that string is returned. Then set LC_NUMERIC to "C" locale. n.b. plsave_set_locale and plrestore_locale should always be used as a pair to surround PLplot code that absolutely requires the LC_NUMERIC "C" locale to be in effect. It is one of plrestore_locale's responsibilities to free the memory allocated here for the locale string.
int plsnprintf | ( | char * | buffer, |
int | n, | ||
PLCHAR_VECTOR | format, | ||
... | |||
) |
Dummy function for snprintf(). This function just calls the unsafe function ignoring the string size. This function will rarely be needed if ever.
buffer | String output buffer. |
n | Size of buffer. |
format | The format string. |
... | The values that go in the format string (...) |
int plsnscanf | ( | PLCHAR_VECTOR | buffer, |
int | n, | ||
PLCHAR_VECTOR | format, | ||
... | |||
) |
Dummy function for snscanf(). This function just calls the unsafe function ignoring the string size. This function will rarely be needed if ever.
buffer | String output buffer. |
n | Size of buffer. |
format | The format string. |
... | The values that go in the format string (...) |
void plstr | ( | PLINT | base, |
PLFLT * | xform, | ||
PLINT | refx, | ||
PLINT | refy, | ||
PLCHAR_VECTOR | string | ||
) |
PLDLLIMPEXP char* plstrdup | ( | PLCHAR_VECTOR | src | ) |
PLFLT plstrl | ( | PLCHAR_VECTOR | string | ) |
PLDLLIMPEXP void plwarn | ( | PLCHAR_VECTOR | errormsg | ) |
PLDLLIMPEXP int ucs4_to_utf8 | ( | PLUNICODE | unichar, |
char * | ptr | ||
) |
Hershey_to_Unicode_table hershey_to_unicode_lookup_table[] |
Definition at line 48 of file plhershey-unicode.h.
int number_of_entries_in_hershey_to_unicode_table |
Definition at line 40 of file plhershey-unicode.h.