# File lib/color/hsl.rb, line 44 44: def initialize(h = 0, s = 0, l = 0) 45: @h = h / 360.0 46: @s = s / 100.0 47: @l = l / 100.0 48: end