Revision: 65719
          http://sourceforge.net/p/brlcad/code/65719
Author:   carlmoore
Date:     2015-07-28 15:54:05 +0000 (Tue, 28 Jul 2015)
Log Message:
-----------
fix spellings; and, in 3dm-g.cpp , implement '?' as option

Modified Paths:
--------------
    brlcad/trunk/src/conv/3dm/3dm-g.cpp
    brlcad/trunk/src/libanalyze/find_subtracted_shapes.cpp
    brlcad/trunk/src/libanalyze/util.cpp
    brlcad/trunk/src/librt/primitives/bot/gct_decimation/meshdecimation.c

Modified: brlcad/trunk/src/conv/3dm/3dm-g.cpp
===================================================================
--- brlcad/trunk/src/conv/3dm/3dm-g.cpp 2015-07-28 15:49:23 UTC (rev 65718)
+++ brlcad/trunk/src/conv/3dm/3dm-g.cpp 2015-07-28 15:54:05 UTC (rev 65719)
@@ -1176,7 +1176,7 @@
 
     int c;
 
-    while ((c = bu_getopt(argc, argv, "o:vruh")) != -1) {
+    while ((c = bu_getopt(argc, argv, "o:vruh?")) != -1) {
        switch (c) {
            case 'o':
                output_path = bu_optarg;

Modified: brlcad/trunk/src/libanalyze/find_subtracted_shapes.cpp
===================================================================
--- brlcad/trunk/src/libanalyze/find_subtracted_shapes.cpp      2015-07-28 
15:49:23 UTC (rev 65718)
+++ brlcad/trunk/src/libanalyze/find_subtracted_shapes.cpp      2015-07-28 
15:54:05 UTC (rev 65719)
@@ -55,7 +55,7 @@
 
     // Parent brep prep is worth passing in, but curr_comb should be prepped 
here, since we're iterating
     // over all candidates.  Might be worth caching *all* preps on all objects 
for later more efficient
-    // diff validatiaon processing, but that needs more thought
+    // diff validation processing, but that needs more thought
     ccomb_vars = (struct rt_gen_worker_vars *)bu_calloc(ncpus+1, sizeof(struct 
rt_gen_worker_vars ), "ccomb state");
     ccomb_resp = (struct resource *)bu_calloc(ncpus+1, sizeof(struct 
resource), "ccomb resources");
     ccomb_rtip = rt_new_rti(dbip);

Modified: brlcad/trunk/src/libanalyze/util.cpp
===================================================================
--- brlcad/trunk/src/libanalyze/util.cpp        2015-07-28 15:49:23 UTC (rev 
65718)
+++ brlcad/trunk/src/libanalyze/util.cpp        2015-07-28 15:54:05 UTC (rev 
65719)
@@ -331,7 +331,7 @@
  * filter all rays not "solid" (as in gdiff)
  * filter all rays not surrounded by "similar" results (need to keep 
subtractions)
  * filter all rays that are "solid"
- * filter all rays surrouned by "similar" results (grab only grazing rays)
+ * filter all rays surrounded by "similar" results (grab only grazing rays)
  */
 extern "C" void
 analyze_seg_filter(struct bu_ptbl *segs, getray_t gray, getflag_t gflag, 
struct rt_i *rtip, struct resource *resp, fastf_t tol, int ncpus)

Modified: brlcad/trunk/src/librt/primitives/bot/gct_decimation/meshdecimation.c
===================================================================
--- brlcad/trunk/src/librt/primitives/bot/gct_decimation/meshdecimation.c       
2015-07-28 15:49:23 UTC (rev 65718)
+++ brlcad/trunk/src/librt/primitives/bot/gct_decimation/meshdecimation.c       
2015-07-28 15:54:05 UTC (rev 65719)
@@ -2197,7 +2197,7 @@
     /* Redirect vertex1 to vertex0 */
     vertex1->redirectindex = newv;
 
-    /* Maximum theoritical count of triangle references for our new vertex, we 
need a chunk of memory that big */
+    /* Maximum theoretical count of triangle references for our new vertex, we 
need a chunk of memory that big */
     trirefmax = vertex0->trirefcount + vertex1->trirefcount;
 
     /* Buffer to temporarily store our new trirefs */

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


------------------------------------------------------------------------------
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to