* @function LevelRenderer.Tool.Color.prototype.toHSV * @description 转换为HSV颜色。 * @param {string} color - 颜色。 * @returns {string} HSV颜色,hsv(h,s,v)
(color)
| 543 | * @returns {string} HSV颜色,hsv(h,s,v) |
| 544 | */ |
| 545 | toHSV(color) { |
| 546 | return this.convert(color, 'hsv'); |
| 547 | } |
| 548 | |
| 549 | /** |
| 550 | * @function LevelRenderer.Tool.Color.prototype.toHSBA |