Revision: 53363
http://brlcad.svn.sourceforge.net/brlcad/?rev=53363&view=rev
Author: carlmoore
Date: 2012-10-25 20:31:25 +0000 (Thu, 25 Oct 2012)
Log Message:
-----------
fix spellings
Modified Paths:
--------------
brlcad/trunk/src/util/pixfade.c
Modified: brlcad/trunk/src/util/pixfade.c
===================================================================
--- brlcad/trunk/src/util/pixfade.c 2012-10-25 19:56:11 UTC (rev 53362)
+++ brlcad/trunk/src/util/pixfade.c 2012-10-25 20:31:25 UTC (rev 53363)
@@ -19,22 +19,22 @@
*/
/** @file util/pixfade.c
*
- * Fade a pixture
+ * Fade a picture
*
- * pixfade will darken a pix by a certen percentage or do an integer
+ * pixfade will darken a pix by a certain percentage or do an integer
* max pixel value. It runs in two modes, truncate which will cut any
* channel greater than param to param, and scale which will change
- * a channel to param percent of its orignal value (limited by 0-255)
+ * a channel to param percent of its original value (limited by 0-255)
*
* Inputs:
* -m integer max value
* -f fraction to fade
* -p percentage of fade (fraction = percentage/100)
- * file a pixture file.
- * STDIN a pixture file if 'file' is not given.
+ * file a picture file.
+ * STDIN a picture file if 'file' is not given.
*
* Output:
- * STDOUT the faded pixture.
+ * STDOUT the faded picture.
*
* Calls:
* get_args
@@ -72,14 +72,14 @@
case 'p':
*multiplier = atof(bu_optarg) / 100.0;
if (*multiplier < 0.0) {
- fprintf(stderr, "pixfade: percent is negitive");
+ fprintf(stderr, "pixfade: percent is negative");
bu_exit (1, NULL);
}
break;
case 'f':
*multiplier = atof(bu_optarg);
if (*multiplier < 0.0) {
- fprintf(stderr, "pixfade: fraction is negitive");
+ fprintf(stderr, "pixfade: fraction is negative");
bu_exit (1, NULL);
}
break;
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits