[Pixelle-commit] SF.net SVN: pixelle: [154] trunk/pixelle/src/com/mebigfatguy/pixelle/ resources/al
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-07-08 03:47:59
|
Revision: 154
http://pixelle.svn.sourceforge.net/pixelle/?rev=154&view=rev
Author: dbrosius
Date: 2008-07-07 20:48:00 -0700 (Mon, 07 Jul 2008)
Log Message:
-----------
oops, fix blue component calc
Modified Paths:
--------------
trunk/pixelle/src/com/mebigfatguy/pixelle/resources/algorithms.xml
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/resources/algorithms.xml
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/resources/algorithms.xml 2008-07-08 03:40:41 UTC (rev 153)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/resources/algorithms.xml 2008-07-08 03:48:00 UTC (rev 154)
@@ -24,13 +24,13 @@
<group name="Separations">
<algorithm name="cyan">
<component name="red">
- (255 - p[x,y].r) - min(min(255 - p[x,y].r, 255 - p[x,y].g), p[x,y].b)
+ (255 - p[x,y].r) - min(min(255 - p[x,y].r, 255 - p[x,y].g), 255 - p[x,y].b)
</component>
<component name="green">
- (255 - p[x,y].r) - min(min(255 - p[x,y].r, 255 - p[x,y].g), p[x,y].b)
+ (255 - p[x,y].r) - min(min(255 - p[x,y].r, 255 - p[x,y].g), 255 - p[x,y].b)
</component>
<component name="blue">
- (255 - p[x,y].r) - min(min(255 - p[x,y].r, 255 - p[x,y].g), p[x,y].b)
+ (255 - p[x,y].r) - min(min(255 - p[x,y].r, 255 - p[x,y].g), 255 - p[x,y].b)
</component>
<component name="transparency">
255
@@ -41,13 +41,13 @@
</algorithm>
<algorithm name="magenta">
<component name="red">
- (255 - p[x,y].g) - min(min(255 - p[x,y].r, 255 - p[x,y].g), p[x,y].b)
+ (255 - p[x,y].g) - min(min(255 - p[x,y].r, 255 - p[x,y].g), 255 - p[x,y].b)
</component>
<component name="green">
- (255 - p[x,y].g) - min(min(255 - p[x,y].r, 255 - p[x,y].g), p[x,y].b)
+ (255 - p[x,y].g) - min(min(255 - p[x,y].r, 255 - p[x,y].g), 255 - p[x,y].b)
</component>
<component name="blue">
- (255 - p[x,y].g) - min(min(255 - p[x,y].r, 255 - p[x,y].g), p[x,y].b)
+ (255 - p[x,y].g) - min(min(255 - p[x,y].r, 255 - p[x,y].g), 255 - p[x,y].b)
</component>
<component name="transparency">
255
@@ -58,13 +58,13 @@
</algorithm>
<algorithm name="yellow">
<component name="red">
- (255 - p[x,y].b) - min(min(255 - p[x,y].r, 255 - p[x,y].g), p[x,y].b)
+ (255 - p[x,y].b) - min(min(255 - p[x,y].r, 255 - p[x,y].g), 255 - p[x,y].b)
</component>
<component name="green">
- (255 - p[x,y].b) - min(min(255 - p[x,y].r, 255 - p[x,y].g), p[x,y].b)
+ (255 - p[x,y].b) - min(min(255 - p[x,y].r, 255 - p[x,y].g), 255 - p[x,y].b)
</component>
<component name="blue">
- (255 - p[x,y].b) - min(min(255 - p[x,y].r, 255 - p[x,y].g), p[x,y].b)
+ (255 - p[x,y].b) - min(min(255 - p[x,y].r, 255 - p[x,y].g), 255 - p[x,y].b)
</component>
<component name="transparency">
255
@@ -75,13 +75,13 @@
</algorithm>
<algorithm name="black">
<component name="red">
- min(min(255 - p[x,y].r, 255 - p[x,y].g), p[x,y].b)
+ min(min(255 - p[x,y].r, 255 - p[x,y].g), 255 - p[x,y].b)
</component>
<component name="green">
- min(min(255 - p[x,y].r, 255 - p[x,y].g), p[x,y].b)
+ min(min(255 - p[x,y].r, 255 - p[x,y].g), 255 - p[x,y].b)
</component>
<component name="blue">
- min(min(255 - p[x,y].r, 255 - p[x,y].g), p[x,y].b)
+ min(min(255 - p[x,y].r, 255 - p[x,y].g), 255 - p[x,y].b)
</component>
<component name="transparency">
255
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|