Revision: 56648
          http://sourceforge.net/p/brlcad/code/56648
Author:   carlmoore
Date:     2013-08-06 22:04:17 +0000 (Tue, 06 Aug 2013)
Log Message:
-----------
implement h?, and also put P into the usage statement

Modified Paths:
--------------
    brlcad/trunk/src/conv/dxf/g-dxf.c

Modified: brlcad/trunk/src/conv/dxf/g-dxf.c
===================================================================
--- brlcad/trunk/src/conv/dxf/g-dxf.c   2013-08-06 21:26:28 UTC (rev 56647)
+++ brlcad/trunk/src/conv/dxf/g-dxf.c   2013-08-06 22:04:17 UTC (rev 56648)
@@ -58,9 +58,9 @@
 void
 usage(const char *argv0)
 {
-    bu_log("Usage: %s [-v] [-i] [-p] [-xX lvl] \n\
-       [-a abs_tess_tol] [-r rel_tess_tol] [-n norm_tess_tol] [-D 
dist_calc_tol] \n\
-       [-o output_file_name.dxf] brlcad_db.g object(s)\n\n", argv0);
+    bu_log("Usage: %s [-v] [-i] [-p] [-xX lvl]\n\
+       [-a abs_tess_tol] [-r rel_tess_tol] [-n norm_tess_tol] [-D 
dist_calc_tol]\n\
+       [-o output_file_name.dxf] [-P #_of_CPUs] brlcad_db.g object(s)\n\n", 
argv0);
 
     bu_log("Options:\n\
  -v    Verbose output\n\
@@ -68,8 +68,8 @@
  -p    Output POLYFACE MESH (instead of default 3DFACE) entities\n\n");
 
     bu_log("\
- -x #  Specifies an RT debug flag\n\
- -X #  Specifies an NMG debug flag\n\n");
+ -x #  Specify an RT debug flag\n\
+ -X #  Specify an NMG debug flag\n\n");
 
     bu_log("\
  -a #  Specify an absolute tessellation tolerance (in mm)\n\
@@ -78,6 +78,9 @@
  -D #  Specify a calculation distance tolerance (in mm)\n\n");
 
     bu_log("\
+ -P #  Specify number of CPUS to be used, and turn on flag to enable receiving 
of core dumps\n\n");
+
+    bu_log("\
  -o dxf        Output to the specified dxf filename\n\n---\n");
 }
 
@@ -418,7 +421,7 @@
     BU_LIST_INIT(&RTG.rtg_vlfree);     /* for vlist macros */
 
     /* Get command line arguments. */
-    while ((c = bu_getopt(argc, argv, "a:n:o:pr:vx:D:P:X:i")) != -1) {
+    while ((c = bu_getopt(argc, argv, "a:n:o:pr:vx:D:P:X:ih?")) != -1) {
        switch (c) {
            case 'a':           /* Absolute tolerance. */
                ttol.abs = atof(bu_optarg);

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with <2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to