Revision: 56334
http://sourceforge.net/p/brlcad/code/56334
Author: carlmoore
Date: 2013-07-30 15:38:38 +0000 (Tue, 30 Jul 2013)
Log Message:
-----------
add missing ending period for 'i.e.', and I assume 'splt' (also among these
changes) should be 'split'
Modified Paths:
--------------
brlcad/trunk/doc/docbook/system/man1/en/bwmod.xml
brlcad/trunk/doc/html/manuals/libdm/dm_obj.html
brlcad/trunk/src/adrt/master/master.c
brlcad/trunk/src/liboptical/photonmap.c
brlcad/trunk/src/librt/primitives/bot/tie.c
brlcad/trunk/src/librt/primitives/bot/tie_kdtree.c
brlcad/trunk/src/tclscripts/hv3/hv3.tcl
brlcad/trunk/src/tclscripts/lib/TableView.tcl
Modified: brlcad/trunk/doc/docbook/system/man1/en/bwmod.xml
===================================================================
--- brlcad/trunk/doc/docbook/system/man1/en/bwmod.xml 2013-07-30 15:17:57 UTC
(rev 56333)
+++ brlcad/trunk/doc/docbook/system/man1/en/bwmod.xml 2013-07-30 15:38:38 UTC
(rev 56334)
@@ -107,7 +107,7 @@
Where 1.409 results from (255-100)/(210-100) which is what one would use
by boost the max value (210) to full scale (255) after subtracting the
mean (100). Subtracting and adding 100 make the multiply occur
-"about that point", i.e value less than 100 will get smaller; those
+"about that point", i.e. value less than 100 will get smaller; those
above, higher.</para>
</refsect1>
Modified: brlcad/trunk/doc/html/manuals/libdm/dm_obj.html
===================================================================
--- brlcad/trunk/doc/html/manuals/libdm/dm_obj.html 2013-07-30 15:17:57 UTC
(rev 56333)
+++ brlcad/trunk/doc/html/manuals/libdm/dm_obj.html 2013-07-30 15:38:38 UTC
(rev 56334)
@@ -20,7 +20,7 @@
<DT>Option: <DD> <B>-N</B> <I>height</I>
</DD>
</DL>
-Specifies the window's height (i.e number of raster lines).
+Specifies the window's height (i.e. number of raster lines).
<P>
<DL>
<DT>Option: <DD> <B>-W</B> <I>width</I>
Modified: brlcad/trunk/src/adrt/master/master.c
===================================================================
--- brlcad/trunk/src/adrt/master/master.c 2013-07-30 15:17:57 UTC (rev
56333)
+++ brlcad/trunk/src/adrt/master/master.c 2013-07-30 15:38:38 UTC (rev
56334)
@@ -440,7 +440,7 @@
continue;
}
- /* remove socket from pool if there's an error, i.e slave
disconnected */
+ /* remove socket from pool if there's an error, i.e. slave
disconnected */
op = 255;
error = tienet_recv (sock->num, &op, 1);
if (error || op == ADRT_NETOP_QUIT || !sock->active)
Modified: brlcad/trunk/src/liboptical/photonmap.c
===================================================================
--- brlcad/trunk/src/liboptical/photonmap.c 2013-07-30 15:17:57 UTC (rev
56333)
+++ brlcad/trunk/src/liboptical/photonmap.c 2013-07-30 15:38:38 UTC (rev
56334)
@@ -121,7 +121,7 @@
if (Max[1] > Max[0] && Max[1] > Max[2]) Axis = 1;
if (Max[2] > Max[0] && Max[2] > Max[1]) Axis = 2;
- /* Find Median Photon to splt by. */
+ /* Find Median Photon to split by. */
MedianIndex = FindMedian(EList, ESize, Axis);
/* Build Left and Right Lists and make sure the Median Photon is not
included in either list. */
@@ -696,7 +696,7 @@
* have been emitted from the light source. Scale = 1/(#emitted photons).
* Call this function after each light source is processed.
* This function also handles setting a default power for the photons based
- * on the size of the scene, i.e power of light source */
+ * on the size of the scene, i.e. power of light source */
void
ScalePhotonPower(int map)
{
Modified: brlcad/trunk/src/librt/primitives/bot/tie.c
===================================================================
--- brlcad/trunk/src/librt/primitives/bot/tie.c 2013-07-30 15:17:57 UTC (rev
56333)
+++ brlcad/trunk/src/librt/primitives/bot/tie.c 2013-07-30 15:38:38 UTC (rev
56334)
@@ -405,7 +405,7 @@
* @param tnum is the number of triangles (tlist = 3 * tnum of TIE_3's).
* @param plist is a list of pointer data that gets assigned to the ptr of
each triangle.
* This will typically be 4-byte (32-bit architecture) spaced array of
pointers that
- * associate the triangle pointer with your arbitrary structure, i.e a mesh.
+ * associate the triangle pointer with your arbitrary structure, i.e. a mesh.
* @param pstride is the number of bytes to increment the pointer list as it
assigns
* a pointer to each mesh, typically a value of 4 (for 32-bit machines). If
you have
* a single pointer that groups all triangles to a common structure then you
can use
Modified: brlcad/trunk/src/librt/primitives/bot/tie_kdtree.c
===================================================================
--- brlcad/trunk/src/librt/primitives/bot/tie_kdtree.c 2013-07-30 15:17:57 UTC
(rev 56333)
+++ brlcad/trunk/src/librt/primitives/bot/tie_kdtree.c 2013-07-30 15:38:38 UTC
(rev 56334)
@@ -499,7 +499,7 @@
* to prevent marching in order to determine a desirable splitting
point. If this section of code
* is being executed it's typically because most 'empty space' has now
been eliminated
* and/or the resulting geometry is now losing structure as the smaller
cells are being
- * created, i.e dividing a fraction of a wing-nut instead of an
engine-block.
+ * created, i.e. dividing a fraction of a wing-nut instead of an
engine-block.
*/
for (d = 0; d < 3; d++)
for (k = 0; k < slice_num; k++)
Modified: brlcad/trunk/src/tclscripts/hv3/hv3.tcl
===================================================================
--- brlcad/trunk/src/tclscripts/hv3/hv3.tcl 2013-07-30 15:17:57 UTC (rev
56333)
+++ brlcad/trunk/src/tclscripts/hv3/hv3.tcl 2013-07-30 15:38:38 UTC (rev
56334)
@@ -1183,7 +1183,7 @@
set O(myImageData) ""
# If this variable is not set to the empty string, it is the id of an
- # [after] event that will refresh the current document (i.e from a
+ # [after] event that will refresh the current document (i.e. from a
# Refresh header or <meta type=http-equiv> markup). This scheduled
# event should be cancelled when the [reset] method is called.
#
Modified: brlcad/trunk/src/tclscripts/lib/TableView.tcl
===================================================================
--- brlcad/trunk/src/tclscripts/lib/TableView.tcl 2013-07-30 15:17:57 UTC
(rev 56333)
+++ brlcad/trunk/src/tclscripts/lib/TableView.tcl 2013-07-30 15:38:38 UTC
(rev 56334)
@@ -229,7 +229,7 @@
# keeps track of data row that gets highlighted
variable highlightRow 0
- # keeps track of column colors (i.e background and foreground)
+ # keeps track of column colors (i.e. background and foreground)
variable colColors
# entry options
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