|
Jspice3
|

Go to the source code of this file.
Macros | |
| #define | RadToDeg 57.29577951 |
| #define | MFBFORMAT MFBCurrent->strings |
| #define | WNDW MFBCurrent->currentWindow |
| #define | VWPRT MFBCurrent->currentViewport |
Functions | |
| void | MFBNaiveBoxFill () |
| void | MFBSetGhost () |
| int | MFBInfo (int Info) |
| void | MFBConvertToHLS (int r, int g, int b) |
| void | SetCurrentMFB (MFB *mfb) |
| void | MFBZeroCounters () |
| void | MFBCounters (int *nChars, int *nBoxes, int *meanBoxArea, int *nLines, int *meanLineLength, int *nPixels) |
| MFBSetLineStyle (int styleId) | |
| MFBSetFillPattern (int styleId) | |
| int | MFBSetChannelMask (int channelMask) |
| int | MFBSetReadMask (int readMask) |
| int | MFBSetColor (int colorId) |
| int | MFBSetTextMode (Bool destructiveBool) |
| int | MFBSetALUMode (int mode) |
| int | MFBSetCursorColor (int colorId1, int colorId2) |
| int | MFBSetBlinker (int colorId, int r, int g, int b, int onFlag) |
| int | MFBSetRubberBanding (Bool RubberBandingBool, int X, int Y) |
| int | MFBDefineColor (int colorId, int r, int g, int b) |
| int | MFBDefineFillPattern (int styleId, int *BitArray) |
| int | MFBDefineLineStyle (int styleId, int BitArray) |
| void | MFBMoveTo (int X1, int Y1) |
| void | MFBDrawPath (MFBPATH *path) |
| void | MFBDrawLineTo (int X1, int Y1) |
| void | MFBLine (int X1, int Y1, int X2, int Y2) |
| void | MFBBox (int l, int b, int r, int t) |
| void | MFBArc (int x, int y, int r, int astart, int astop, int s) |
| void | MFBCircle (int x, int y, int r, int s) |
| void | MFBFlash (int x, int y, int r, int s) |
| void | MFBPolygon (MFBPOLYGON *p) |
| void | MFBText (char *text, int x, int y, int phi) |
| void | MFBPixel (int x, int y) |
| void | MFBFlood () |
| MFBPATH * | MFBArcPath (int x, int y, int r, int astart, int astop, int s) |
| MFBPOLYGON * | MFBEllipse (int x, int y, int rx, int ry, int s) |
| int | MFBScaleX (int X) |
| int | MFBScaleY (int Y) |
| int | MFBDescaleX (int X) |
| int | MFBDescaleY (int Y) |
| void | MFBSetViewport (int left, int bottom, int right, int top) |
| void | MFBSetWindow (int left, int bottom, int right, int top) |
| void | MFBNaiveBoxFill (left, bottom, right, top) |
Variables | |
| MFB * | MFBCurrent |
| int | LastX |
| int | LastY |
| #define MFBFORMAT MFBCurrent->strings |
Definition at line 28 of file mfbbasic.c.
| #define RadToDeg 57.29577951 |
Definition at line 27 of file mfbbasic.c.
| #define VWPRT MFBCurrent->currentViewport |
Definition at line 1094 of file mfbbasic.c.
| #define WNDW MFBCurrent->currentWindow |
Definition at line 1093 of file mfbbasic.c.
| void MFBArc | ( | int | x, |
| int | y, | ||
| int | r, | ||
| int | astart, | ||
| int | astop, | ||
| int | s | ||
| ) |
Definition at line 780 of file mfbbasic.c.
| MFBPATH* MFBArcPath | ( | int | x, |
| int | y, | ||
| int | r, | ||
| int | astart, | ||
| int | astop, | ||
| int | s | ||
| ) |
Definition at line 1002 of file mfbbasic.c.
| void MFBBox | ( | int | l, |
| int | b, | ||
| int | r, | ||
| int | t | ||
| ) |
Definition at line 751 of file mfbbasic.c.
| void MFBCircle | ( | int | x, |
| int | y, | ||
| int | r, | ||
| int | s | ||
| ) |
Definition at line 821 of file mfbbasic.c.
| void MFBConvertToHLS | ( | int | r, |
| int | g, | ||
| int | b | ||
| ) |
Definition at line 158 of file mfbbasic.c.
| void MFBCounters | ( | int * | nChars, |
| int* | nBoxes, | ||
| int* | meanBoxArea, | ||
| int* | nLines, | ||
| int* | meanLineLength, | ||
| int* | nPixels | ||
| ) |
Definition at line 224 of file mfbbasic.c.
| int MFBDefineColor | ( | int | colorId, |
| int | r, | ||
| int | g, | ||
| int | b | ||
| ) |
Definition at line 549 of file mfbbasic.c.
| int MFBDefineFillPattern | ( | int | styleId, |
| int * | BitArray | ||
| ) |
Definition at line 579 of file mfbbasic.c.
| int MFBDefineLineStyle | ( | int | styleId, |
| int | BitArray | ||
| ) |
Definition at line 619 of file mfbbasic.c.
| int MFBDescaleX | ( | int | X | ) |
Definition at line 1121 of file mfbbasic.c.
| int MFBDescaleY | ( | int | Y | ) |
Definition at line 1131 of file mfbbasic.c.
| void MFBDrawLineTo | ( | int | X1, |
| int | Y1 | ||
| ) |
Definition at line 696 of file mfbbasic.c.
| void MFBDrawPath | ( | MFBPATH * | path | ) |
Definition at line 669 of file mfbbasic.c.
| MFBPOLYGON* MFBEllipse | ( | int | x, |
| int | y, | ||
| int | rx, | ||
| int | ry, | ||
| int | s | ||
| ) |
Definition at line 1043 of file mfbbasic.c.
| void MFBFlash | ( | int | x, |
| int | y, | ||
| int | r, | ||
| int | s | ||
| ) |
Definition at line 859 of file mfbbasic.c.
| void MFBFlood | ( | ) |
Definition at line 985 of file mfbbasic.c.
| int MFBInfo | ( | int | Info | ) |
Definition at line 44 of file mfbbasic.c.
| void MFBLine | ( | int | X1, |
| int | Y1, | ||
| int | X2, | ||
| int | Y2 | ||
| ) |
Definition at line 725 of file mfbbasic.c.
| void MFBMoveTo | ( | int | X1, |
| int | Y1 | ||
| ) |
Definition at line 655 of file mfbbasic.c.
| void MFBNaiveBoxFill | ( | ) |
| void MFBNaiveBoxFill | ( | left | , |
| bottom | , | ||
| right | , | ||
| top | |||
| ) |
Definition at line 1169 of file mfbbasic.c.
| void MFBPixel | ( | int | x, |
| int | y | ||
| ) |
Definition at line 972 of file mfbbasic.c.
| void MFBPolygon | ( | MFBPOLYGON * | p | ) |
Definition at line 893 of file mfbbasic.c.
| int MFBScaleX | ( | int | X | ) |
Definition at line 1097 of file mfbbasic.c.
| int MFBScaleY | ( | int | Y | ) |
Definition at line 1109 of file mfbbasic.c.
| int MFBSetALUMode | ( | int | mode | ) |
Definition at line 423 of file mfbbasic.c.
| int MFBSetBlinker | ( | int | colorId, |
| int | r, | ||
| int | g, | ||
| int | b, | ||
| int | onFlag | ||
| ) |
Definition at line 477 of file mfbbasic.c.
| int MFBSetChannelMask | ( | int | channelMask | ) |
Definition at line 322 of file mfbbasic.c.
| int MFBSetColor | ( | int | colorId | ) |
Definition at line 370 of file mfbbasic.c.
| int MFBSetCursorColor | ( | int | colorId1, |
| int | colorId2 | ||
| ) |
Definition at line 463 of file mfbbasic.c.
| MFBSetFillPattern | ( | int | styleId | ) |
Definition at line 288 of file mfbbasic.c.
| void MFBSetGhost | ( | ) |
Definition at line 34 of file mfbbasic.c.
| MFBSetLineStyle | ( | int | styleId | ) |
Definition at line 259 of file mfbbasic.c.
| int MFBSetReadMask | ( | int | readMask | ) |
Definition at line 346 of file mfbbasic.c.
| int MFBSetRubberBanding | ( | Bool | RubberBandingBool, |
| int | X, | ||
| int | Y | ||
| ) |
Definition at line 513 of file mfbbasic.c.
| int MFBSetTextMode | ( | Bool | destructiveBool | ) |
Definition at line 395 of file mfbbasic.c.
| void MFBSetViewport | ( | int | left, |
| int | bottom, | ||
| int | right, | ||
| int | top | ||
| ) |
| void MFBSetWindow | ( | int | left, |
| int | bottom, | ||
| int | right, | ||
| int | top | ||
| ) |
| void MFBText | ( | char * | text, |
| int | x, | ||
| int | y, | ||
| int | phi | ||
| ) |
Definition at line 926 of file mfbbasic.c.
| void MFBZeroCounters | ( | ) |
Definition at line 213 of file mfbbasic.c.
| void SetCurrentMFB | ( | MFB * | mfb | ) |
Definition at line 198 of file mfbbasic.c.
| int LastX |
Definition at line 652 of file mfbbasic.c.
| int LastY |
Definition at line 652 of file mfbbasic.c.
| MFB* MFBCurrent |
Definition at line 31 of file mfbbasic.c.