Data update
This commit is contained in:
parent
0df55f9f24
commit
aec8ed51b6
1045 changed files with 18889 additions and 2777 deletions
39
Task/Color-wheel/EasyLang/color-wheel.easy
Normal file
39
Task/Color-wheel/EasyLang/color-wheel.easy
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
proc hsb2rgb hue sat bri . r g b .
|
||||
h = (hue - floor hue) * 6
|
||||
f = h - floor h
|
||||
p = bri * (1 - sat)
|
||||
q = bri * (1 - sat * f)
|
||||
t = bri * (1 - sat * (1 - f))
|
||||
h = floor h
|
||||
if h = 0
|
||||
r = bri ; g = t ; b = p
|
||||
elif h = 1
|
||||
r = q ; g = bri ; b = p
|
||||
elif h = 2
|
||||
r = p ; g = bri ; b = t
|
||||
elif h = 3
|
||||
r = p ; g = q ; b = bri
|
||||
elif h = 4
|
||||
r = t ; g = p ; b = bri
|
||||
else
|
||||
r = bri ; g = p ; b = q
|
||||
.
|
||||
.
|
||||
proc cwheel . .
|
||||
for y = 0 to 499
|
||||
dy = y - 250
|
||||
for x = 0 to 499
|
||||
dx = x - 250
|
||||
dist = sqrt (dx * dx + dy * dy)
|
||||
if dist <= 250
|
||||
theta = atan2 dy dx
|
||||
hue = (theta + 180) / 360
|
||||
hsb2rgb hue (dist / 250) 1 r g b
|
||||
color3 r g b
|
||||
move x / 5 y / 5
|
||||
rect 0.3 0.3
|
||||
.
|
||||
.
|
||||
.
|
||||
.
|
||||
cwheel
|
||||
Loading…
Add table
Add a link
Reference in a new issue