Lines Matching refs:lum
5519 function HSLColor(hue, sat, lum) { argument
5522 this.lum = 0;
5525 this.lum = lum;
5540 return this.lum;
5542 HSLColor.prototype.setLum = function (lum) { argument
5543 this.lum = lum;
5564 var l = this.lum;
5581 this.lum *= (1 + (amount / 100.0));
5582 this.lum = this.clamp01(this.lum);
5586 this.lum *= amount / 100.0;
5587 this.lum = this.clamp01(this.lum);
5596 this.lum *= amount / 100.0;
5597 this.lum = this.clamp01(this.lum);
6087 /*private*/ this.lum = 0;
6203 OoxmlColor.prototype.setLum = function (lum) { argument
6204 this.lum = lum;
8621 function HslClr(hue, sat, lum) { argument
8628 _this.__com_mxgraph_io_vsdx_theme_HslClr_lum = lum / 100.0;
8629 … _this.color = new com.mxgraph.io.vsdx.theme.HSLColor(hue, sat, lum).toRgb();