Revision: 56383
          http://sourceforge.net/p/brlcad/code/56383
Author:   carlmoore
Date:     2013-07-31 14:08:14 +0000 (Wed, 31 Jul 2013)
Log Message:
-----------
fix spelling, spacing; also, remove trailing blanks/tabs

Modified Paths:
--------------
    brlcad/trunk/doc/docbook/system/mann/en/comb.xml
    brlcad/trunk/include/icv.h
    brlcad/trunk/src/libged/comb.c
    brlcad/trunk/src/libicv/crop.c
    brlcad/trunk/src/libicv/filter.c
    brlcad/trunk/src/librt/search.c

Modified: brlcad/trunk/doc/docbook/system/mann/en/comb.xml
===================================================================
--- brlcad/trunk/doc/docbook/system/mann/en/comb.xml    2013-07-31 13:40:08 UTC 
(rev 56382)
+++ brlcad/trunk/doc/docbook/system/mann/en/comb.xml    2013-07-31 14:08:14 UTC 
(rev 56383)
@@ -68,10 +68,10 @@
        <varlistentry>
          <term>
          Suppose we have a situation where region2.r is unioned into 
region1.r, and both
-         region1.r and region2.r have the region flag set, as seen in the tree 
below.  
+         region1.r and region2.r have the region flag set, as seen in the tree 
below.
           </term>
 
-<listitem>     
+<listitem>
       <literallayout>
       <computeroutput>
 <prompt>mged&gt;</prompt> <userinput>tree region1.r</userinput>
@@ -88,9 +88,9 @@
       region is not supposed to be combined into another using boolean 
operations.
       Further, suppose that one or
       more assemblies use region2.r and expect it to be a region - i.e., 
region2.r needs
-      to remain a region with the same contents.  
+      to remain a region with the same contents.
 
-      To fix this problem without disturbing other geometry using region2.r, 
first 
+      To fix this problem without disturbing other geometry using region2.r, 
first
       make a combination below region2.r using the <option>w</option> flag to 
<command>comb</command>:
       </para>
 
@@ -124,7 +124,7 @@
                 u arb.s
       </computeroutput>
       </literallayout>
-      
+
       <para>
         Because the tree is manipulated as a Tcl list, we need glob 
compatibility mode to be
         off on the MGED command line.  Once the tree is re-defined, region1.r 
no longer has
@@ -132,8 +132,8 @@
       </para>
 
       <para>
-        Optionally, the name region2.r.c can be changed to the name region2.c 
with 
-        the <command>mvall</command> command: 
+        Optionally, the name region2.r.c can be changed to the name region2.c 
with
+        the <command>mvall</command> command:
       </para>
 
       <literallayout>

Modified: brlcad/trunk/include/icv.h
===================================================================
--- brlcad/trunk/include/icv.h  2013-07-31 13:40:08 UTC (rev 56382)
+++ brlcad/trunk/include/icv.h  2013-07-31 14:08:14 UTC (rev 56383)
@@ -287,7 +287,7 @@
 /** @file libicv/crop.c
  *
  * This file contains functions for cropping images.
- * There are two types of cropping rectangular and skeyed.
+ * There are two types of cropping: rectangular and skeyed.
  */
 
 /**
@@ -295,11 +295,11 @@
  * Note : (0,0) corresponds to the Bottom Left of an Image.
  *
  * @param img Input image struct to be cropped.
- * @param xorig X-Cordinate of offset of image to be extracted from.
- * @param yorig Y-Cordinate of offset of image to be extracted from.
- * @param xnum Legnth of the output image to be extracted from input
+ * @param xorig X-Coordinate of offset of image to be extracted from.
+ * @param yorig Y-Coordinate of offset of image to be extracted from.
+ * @param xnum Length of the output image to be extracted from input
  * data in horizontal direction.
- * @param ynum Legnth of the output image to be extracted from input
+ * @param ynum Length of the output image to be extracted from input
  * data in vertical direction.
  * @return 0 on success.
  */
@@ -308,8 +308,8 @@
 /**
  * This function crops an input image.
  * This can do a screwed cropping, i.e. given any four points of
- * quadrilateral in an image, Maps it to a rectangle of xnumXynum
- * dimension
+ * quadrilateral in an image, map it to a rectangle of xnumXynum
+ * dimension.
  *
  *        (ulx,uly)         (urx,ury)
  *             __________________

Modified: brlcad/trunk/src/libged/comb.c
===================================================================
--- brlcad/trunk/src/libged/comb.c      2013-07-31 13:40:08 UTC (rev 56382)
+++ brlcad/trunk/src/libged/comb.c      2013-07-31 14:08:14 UTC (rev 56383)
@@ -192,11 +192,11 @@
 
 /* Approach - define a search string that searches for all solid objects
  * in the tree, and returns the bu_ptbl list of unique solids.  Do the
- * same for combs.  
+ * same for combs.
  *
- * Need to make sure that all objects in the tree are unioned in - 
- * it's not clear what it would mean to at the moment "flatten" a 
- * tree with intersections or subtractions.  
+ * Need to make sure that all objects in the tree are unioned in -
+ * it's not clear what it would mean to at the moment "flatten" a
+ * tree with intersections or subtractions.
  * Once boolean evaluations are ready, we could probably
  * evaluate such objects to get a single representation that can be unioned
  * into a flat tree...

Modified: brlcad/trunk/src/libicv/crop.c
===================================================================
--- brlcad/trunk/src/libicv/crop.c      2013-07-31 13:40:08 UTC (rev 56382)
+++ brlcad/trunk/src/libicv/crop.c      2013-07-31 14:08:14 UTC (rev 56383)
@@ -20,7 +20,7 @@
 /** @file libicv/crop.c
  *
  * This file contains functions for cropping images.
- * There are two types of cropping rectangular and skeyed.
+ * There are two types of cropping: rectangular and skeyed.
  *
  */
 #include "bu.h"

Modified: brlcad/trunk/src/libicv/filter.c
===================================================================
--- brlcad/trunk/src/libicv/filter.c    2013-07-31 13:40:08 UTC (rev 56382)
+++ brlcad/trunk/src/libicv/filter.c    2013-07-31 14:08:14 UTC (rev 56383)
@@ -163,7 +163,7 @@
     image*/
 
     /* TODO A new Functionality. Update the get_kernel function to
-    accomodate the    generalized kernel length. This can be based
+    accommodate the generalized kernel length. This can be based
     upon a library of filters or closed form definitions. */
 
     kern = bu_malloc(k_dim*k_dim*sizeof(double), "icv_filter : Kernel 
Allocation");

Modified: brlcad/trunk/src/librt/search.c
===================================================================
--- brlcad/trunk/src/librt/search.c     2013-07-31 13:40:08 UTC (rev 56382)
+++ brlcad/trunk/src/librt/search.c     2013-07-31 14:08:14 UTC (rev 56383)
@@ -164,7 +164,7 @@
                             genptr_t client_data)
 {
     struct directory *dp;
- 
+
     if (!tp)
        return;
 
@@ -649,7 +649,7 @@
            return 0;
 
        comb = (struct rt_comb_internal *)in.idb_ptr;
-        
+
         curr_node.path = &belowpath;
        state = db_fullpath_stateful_traverse_subtree(comb->tree, 
db_fullpath_stateful_traverse, dbip, wdbp, results, &curr_node, 
find_execute_nested_plans, find_execute_nested_plans, wdbp->wdb_resp, 
plan->bl_data[0]);
 

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


------------------------------------------------------------------------------
Get your SQL database under version control now!
Version control is standard for application code, but databases havent 
caught up. So what steps can you take to put your SQL databases under 
version control? Why should you start doing it? Read more to find out.
http://pubads.g.doubleclick.net/gampad/clk?id=49501711&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to