Go to the source code of this file.
◆ mErrStrmRet
| #define mErrStrmRet |
( |
|
s | ) |
{ strm << s << '\n'; return false; } |
◆ mGetColorString
| #define mGetColorString |
( |
|
col, |
|
|
|
str |
|
) |
| |
Value: str = (int) col.r(); \
str += "/"; str += (int) col.g(); \
str += "/"; str += (int) col.b();
◆ mGetLineStyleString
| #define mGetLineStyleString |
( |
|
ls, |
|
|
|
str |
|
) |
| |
Value: str = ls.width_; str += "p,"; \
BufferString lscol; \
mGetColorString( ls.color_, lscol ); \
str += lscol; str += ","; \
switch ( ls.type_ ) \
{ \
str += "-"; \
break; \
str += "."; \
break; \
str += "-."; \
break; \
str += "-.."; \
break; \
default: break; \
}
◆ mGetProjString
| #define mGetProjString |
( |
|
str, |
|
|
|
projkey |
|
) |
| |
Value:
str += "-J"; str += projkey; str += dim.start; str += "c/"; \
str += dim.stop; str += "c";
◆ mGetRangeString
| #define mGetRangeString |
( |
|
str | ) |
|
Value:
str = "-R"; str += xrg.start; str += "/"; \
str += xrg.stop; str += "/"; \
str += yrg.start; str += "/"; str += yrg.stop;
◆ GMTParCreateFunc
| typedef GMTPar*(* GMTParCreateFunc) (const IOPar &, const char *) |
◆ GMTPF()