var pw = .03;//sky haze
var x = 0;
setPenWeight(pw * 3);
while (x <= 1) {
setPenColor(.8, .7, x);
drawLine(x, 0, x, 1);
x += pw;
}
setPenWeight(.6);//orng sun
setPenColor(.9, .75, .1);
drawLine(.1, .18, .2, .18);
setPenWeight(.55);//ylw sun
setPenColor(.9, .9, .1);
drawLine(.1, .18, .2, .18);
var limit = 1;
var y = .2;
while(y <= limit) {
setPenWeight(y);
setPenColor(.7, .8, y);//ripples
drawLine(0, y, 1, y);
y+= .05;
}
var x = 0;//ylw sun reflection
var y = .16;
limity=.5;//furthest reflection
limitx=1;//distance of reflection expansion
xspace=.2;//width increment
yspace=.04;// spacing
while (y<=limity) {
if (x>=limitx){
x=1;
}
setPenWeight(.01);
setPenColor(.9, .8, .3);
drawLine(0, y, x+.34, y);
y= y+yspace
x= x+xspace
}
var x = 0;//orng sun reflection
var y = .165;
limity=.5;//furthest reflection
limitx=1;//distance of reflection expansion
xspace=.2;//width increment
yspace=.04;//spacing
while (y<=limity) {
if (x>=limitx){
x=1;
}
setPenWeight(.01);
setPenColor(.99, .7, .3);
drawLine(0, y, x+.34, y);
y= y+yspace
x= x+xspace
}
//bird
setPenWeight(.1);//post
setPenColor(.2, .1, .2);
drawLine(.22, .59, .22, 1);
setPenWeight(.02);//beak
setPenColor(.9, .8, .2);
drawLine(.16, .48, .19, .48);
setPenWeight(.1);//head
setPenColor(.99,.99,.99);
drawLine(.195, .48, .2, .48);
setPenWeight(.12);//body
setPenColor(.9,.9,.9);
drawLine(.21,.55, .25, .56);
setPenColor(.6,.6, .6);//wing
drawLine(.22, .55, .235, .55);
setPenWeight(.02);//eye
setPenColor(.1,.1,.1);
drawLine(.19, .47, .191, .47);
stop();