ENH: tag some options as 'advanced' (only shown with -help-full)

General:
    * -roots, -hostRoots, -fileHandler

Specific:
    * -to <coordinateSystem> -from <coordinateSystem>

- Display -help-compat when compatibility or ignored options are available

STYLE: capitalization of options text
This commit is contained in:
Mark Olesen
2018-07-31 11:54:15 +02:00
parent d40103a86f
commit cb919a6c41
98 changed files with 403 additions and 385 deletions

View File

@ -85,37 +85,39 @@ int main(int argc, char *argv[])
argList::addBoolOption
(
"clean",
"perform some surface checking/cleanup on the input surface"
"Perform some surface checking/cleanup on the input surface"
);
argList::addOption
(
"scaleIn",
"factor",
"geometry scaling factor on input"
"Geometry scaling factor on input"
);
argList::addOption
(
"scaleOut",
"factor",
"geometry scaling factor on output"
"Geometry scaling factor on output"
);
#include "addDictOption.H"
argList::addOption
(
"from",
"system",
"specify the source coordinate system, applied after '-scaleIn'"
"Specify the source coordinate system, applied after '-scaleIn'",
true // advanced
);
argList::addOption
(
"to",
"system",
"specify the target coordinate system, applied before '-scaleOut'"
"Specify the target coordinate system, applied before '-scaleOut'",
true // advanced
);
argList::addBoolOption
(
"tri",
"triangulate surface"
"Triangulate surface"
);