Revision: 55579
http://sourceforge.net/p/brlcad/code/55579
Author: carlmoore
Date: 2013-05-29 16:25:41 +0000 (Wed, 29 May 2013)
Log Message:
-----------
change h,H,n to n,N,B respectively in the options; h will now be a help flag
Modified Paths:
--------------
brlcad/trunk/src/proc-db/brickwall.c
Modified: brlcad/trunk/src/proc-db/brickwall.c
===================================================================
--- brlcad/trunk/src/proc-db/brickwall.c 2013-05-29 15:44:32 UTC (rev
55578)
+++ brlcad/trunk/src/proc-db/brickwall.c 2013-05-29 16:25:41 UTC (rev
55579)
@@ -34,7 +34,7 @@
#include "vmath.h"
/* declarations to support use of bu_getopt() */
-char *options = "w:h:d:W:H:sn:t:Du:mc:C:?";
+char *options = "w:n:d:W:N:sB:t:Du:mc:C:h?";
char *progname = "(noname)";
double brick_width=8.0;
@@ -66,8 +66,8 @@
progname,
" [ -u units ] [ -s(tandalone) ] [-t tolerance ]",
" [-m(ortar) ] [ -c R/G/B (brick) ] [ -C R/G/B (mortar)]",
- " -w brick_width -h brick_height -d brick_depth -n
brick_name",
- " -W wall_width -H wall_height\n > mged_commands \n");
+ " -w brick_width -n brick_height -d brick_depth -B
brick_name",
+ " -W wall_width -N wall_height\n > mged_commands \n");
bu_exit(1, NULL);
}
@@ -122,7 +122,7 @@
if (!ZERO(d))
brick_width = d;
break;
- case 'h':
+ case 'n':
d=atof(bu_optarg);
if (!ZERO(d))
brick_height = d;
@@ -137,12 +137,12 @@
if (!ZERO(d))
wall_width = d;
break;
- case 'H':
+ case 'N':
d=atof(bu_optarg);
if (!ZERO(d))
wall_height = d;
break;
- case 'n':
+ case 'B':
brick_name = bu_optarg;
break;
case 's':
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits