Doing the current meter, i found a bug in my color transformation code. Nutcracker never uses r,g,b anywhere except whenit is all finished. Everything is in HSV, You are not allowed to view links.
Register or
Login.
The Hue allows me to morph colors easily. Well when i morphed from one color to the second, H1,S1,V1 into H2,S2,V2 i morphed the hue (H1=>H2) but i set the S and V to 100%. Why? I don't remember. Maybe because at the time i liked bright colors. S=100% Indicates full saturation of the Hue, V=100% is full brightness.
I fixed the logic so now all three are morphing correctly.
What does this mean? It means before you could not do grays. You also couldnt fade a bright red down to black. Now you can.
Here is a gray color scheme
username f
user_target AA
effect_class spirals
effect_name GRAY_CHECK
number_spirals 4
number_rotations 2
spiral_thickness 2
window_degrees 360
start_color #CFCFCF
end_color #A3A3A3
frame_delay 22
direction cw
sparkles
use_background n
background_color #0B3802
submit Submit Form to create your target model

And here is a color hue , leaving the hue and fading to black.
_POST
username f
user_target AA
effect_class spirals
effect_name GRAY_CHECK
number_spirals 4
number_rotations 2
spiral_thickness 2
window_degrees 360
start_color #FA053E
end_color #3D3637
frame_delay 22
direction cw
sparkles
use_background n
background_color #0B3802
submit Submit Form to create your target model

Here is readers digest of all changes so far this last week:
NUTCRACKER SUMMARY OF CHANGES
Effect builder now has new options:
1) sparkles: is a number form 0-100. This indicates what percentage of teh pixels being drawn should have their color overwritten and instad be set to white.
0 means , do not have any sparkles.
2) window_degrees: Value 0-360 degres
this is how much of your tree will be displayed.
360 will show entire tree, 180 = half a tree, 90 = 1/4 of a tree.
thanks
3) Nutcracker now displays timing as it runsExample:
Creating Effect, spirals class: : Elapsed time = 0.13534 seconds
Finished Effect, spirals class: : Elapsed time = 0.24950 seconds
Starting Rotate image about Z axis : Elapsed time = 0.24957 seconds
Finished Rotate image about Z axis : Elapsed time = 11.28429 seconds
Making gnuplot command file: : Elapsed time = 11.28435 seconds
Finished gnuplot command file: : Elapsed time = 11.38652 seconds
Calling Gnuplot: : Elapsed time = 11.38672 seconds
Finished Gnuplot: : Elapsed time = 26.79310 seconds
Calling Imagick to make animated GIF: : Elapsed time = 26.79319 seconds
Finished Imagick to make animated GIF: : Elapsed time = 27.30974 seconds
4) Two new options to set background color
use_background Y
background_color #067306
If you answer yes u want a background color, every pixel of your tree will be set to that color.
Next i take whatever animation you have and put it on top of the background.
5) Added the Gallery of effects to the effects form. Now you can see all other users effects.
6) Added current meter to show how much DC current is being drawn by your animation
7) Fixed color bug. In H1,S1,V1 => H2,S2,V2 transformations, i was only modifying the hue.
END OF SUMMARY