Difference between revisions of "The HSV color scheme"
From JSXGraph Wiki
Jump to navigationJump to searchA WASSERMANN (talk | contribs) |
A WASSERMANN (talk | contribs) |
||
Line 1: | Line 1: | ||
− | The HSV color scheme consists of three values: | + | The [http://en.wikipedia.org/wiki/Color_wheel HSV color scheme] consists of three values: |
* Hue (base color): between 0 and 360 | * Hue (base color): between 0 and 360 | ||
* Saturation (purity): between 0 and 1 | * Saturation (purity): between 0 and 1 | ||
Line 31: | Line 31: | ||
</source> | </source> | ||
+ | ===External links=== | ||
+ | * [htthttp://en.wikipedia.org/wiki/Color_wheelp://en.wikipedia.org/wiki/Color_wheel] | ||
[[Category:Examples]] | [[Category:Examples]] |
Revision as of 16:23, 11 August 2009
The HSV color scheme consists of three values:
- Hue (base color): between 0 and 360
- Saturation (purity): between 0 and 1
- Value (brightness): between 0 and 1
Here, you can experiment with these values.
The underlying JavaScript code
<jsxgraph width=600 height=500>
var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-2,4,8,-4]});
var H = brd.createElement('slider',[[0,3.5],[5,3.5],[0,1,360]], {name:'H'});
var S = brd.createElement('slider',[[0,3],[5,3],[0,1,1]], {name:'S'});
var V = brd.createElement('slider',[[0,2.5],[5,2.5],[0,1,1]], {name:'V'});
var rct = brd.createElement('curve',[[-1,-1,5,5,-1],[-2,2,2,-2,-2]],
{strokeColor:'black',
fillcolor:function(){ return JXG.hsv2rgb(H.Value(),S.Value(),V.Value()); }
}
);
</jsxgraph>
External links
- [htthttp://en.wikipedia.org/wiki/Color_wheelp://en.wikipedia.org/wiki/Color_wheel]