(l, c, h, opacity)
| 128099 | return new Hcl(h < 0 ? h + 360 : h, Math.sqrt(o.a * o.a + o.b * o.b), o.l, o.opacity); |
| 128100 | } |
| 128101 | function lch(l, c, h, opacity) { |
| 128102 | return arguments.length === 1 ? hclConvert(l) : new Hcl(h, c, l, opacity == null ? 1 : opacity); |
| 128103 | } |
| 128104 | function hcl(h, c, l, opacity) { |
| 128105 | return arguments.length === 1 ? hclConvert(h) : new Hcl(h, c, l, opacity == null ? 1 : opacity); |
| 128106 | } |
nothing calls this directly
no test coverage detected