1318 |
alexandre_ |
1 |
/*
|
|
|
2 |
Copyright (c) 2004-2006, The Dojo Foundation
|
|
|
3 |
All Rights Reserved.
|
|
|
4 |
|
|
|
5 |
Licensed under the Academic Free License version 2.1 or above OR the
|
|
|
6 |
modified BSD license. For more information on Dojo licensing, see:
|
|
|
7 |
|
|
|
8 |
http://dojotoolkit.org/community/licensing.shtml
|
|
|
9 |
*/
|
|
|
10 |
|
1422 |
alexandre_ |
11 |
|
|
|
12 |
|
1318 |
alexandre_ |
13 |
dojo.provide("dojo.graphics.color.hsl");
|
|
|
14 |
dojo.require("dojo.gfx.color.hsl");
|
|
|
15 |
dojo.deprecated("dojo.graphics.color.hsl has been replaced with dojo.gfx.color.hsl", "0.5");
|
|
|
16 |
dojo.graphics.color.rgb2hsl = function (r, g, b) {
|
|
|
17 |
dojo.deprecated("dojo.graphics.color.rgb2hsl has been replaced with dojo.gfx.color.rgb2hsl", "0.5");
|
|
|
18 |
return dojo.gfx.color.rgb2hsl(r, g, b);
|
|
|
19 |
};
|
|
|
20 |
dojo.graphics.color.hsl2rgb = function (h, s, l) {
|
|
|
21 |
dojo.deprecated("dojo.graphics.color.hsl2rgb has been replaced with dojo.gfx.color.hsl2rgb", "0.5");
|
|
|
22 |
return dojo.gfx.color.hsl2rgb(h, s, l);
|
|
|
23 |
};
|
|
|
24 |
dojo.graphics.color.hsl2hex = function (h, s, l) {
|
|
|
25 |
dojo.deprecated("dojo.graphics.color.hsl2hex has been replaced with dojo.gfx.color.hsl2hex", "0.5");
|
|
|
26 |
return dojo.gfx.color.hsl2hex(h, s, l);
|
|
|
27 |
};
|
|
|
28 |
dojo.graphics.color.hex2hsl = function (hex) {
|
|
|
29 |
dojo.deprecated("dojo.graphics.color.hex2hsl has been replaced with dojo.gfx.color.hex2hsl", "0.5");
|
|
|
30 |
return dojo.gfx.color.hex2hsl(hex);
|
|
|
31 |
};
|
|
|
32 |
|