Searched refs:hue (Results 1 - 4 of 4) sorted by relevance
/inkscape/src/extension/internal/bitmap/ |
H A D | modulate.cpp | 22 float hue = (_hue * 200 / 360.0) + 100; local 23 image->modulate(_brightness + 100, _saturation + 100, hue); 30 _hue = module->get_param_float("hue"); 42 "<param name=\"hue\" gui-text=\"" N_("Hue:") "\" type=\"float\" min=\"-360\" max=\"360\">0</param>\n" 50 "<menu-tip>" N_("Adjust the amount of hue, saturation, and brightness in selected bitmap(s)") "</menu-tip>\n"
|
/inkscape/share/extensions/ |
H A D | color_HSL_adjust.py | 12 self.OptionParser.add_option("-x", "--hue", 14 dest="hue", default="0", 15 help="Adjust hue") 27 help="Randomize hue") 49 elif (self.options.hue): 50 hueval = hsl[0] + (self.options.hue / 360.0)
|
/inkscape/src/ui/widget/ |
H A D | gimpcolorwheel.c | 414 gdouble hue, saturation, value; local 425 hue = *h * 6.0; 429 if (hue == 6.0) 430 hue = 0.0; 432 f = hue - (int) hue; 437 switch ((int) hue) 515 /* Computes whether a point is inside the hue ring */ 857 /* Paints the hue ring */ 876 gdouble hue; local 1535 gdouble hue, sat, val; local [all...] |
/inkscape/src/extension/internal/filter/ |
H A D | color.h | 311 Rotate and desaturate hue 340 "<menu-tip>" N_("Rotate and desaturate hue") "</menu-tip>\n" 958 Manage hue, lightness and transparency inversions 961 * Invert hue (boolean, default false) -> color1 (values, true: 180, false: 0) 962 * Invert lightness (boolean, default false) -> color1 (values, true: 180, false: 0; XOR with Invert hue), 989 "<param name=\"hue\" gui-text=\"" N_("Invert hue") "\" type=\"boolean\" >false</param>\n" 999 "<menu-tip>" N_("Manage hue, lightness and transparency inversions") "</menu-tip>\n" 1017 std::ostringstream hue; local 1019 if (ext->get_param_bool("hue") [all...] |
Completed in 36 milliseconds