For concept one I was was looking at loops and looking at how you create one line of code and the outcome is that the rest are almost mirror images. an example of this in code might be;
void draw()
{
int space=10;
int count=0;
while(count<12)
{
line(count*space,0,count*space,height);
count=count+1;
}
}
Concept Two
For this concept I was looking at code such as...
if (mouseX < 40)
{
stroke(255);
rect(-60,-60, 120,120);
}
In this case when the Ball is over the Water Level then the Ball Colour changes.
Concept Three
For concept three I took into acount that when the variable changes the rest of the code changes so for the Exibition peice, it you change the variable pic , the rest of the the code pics for change to relate to that variable.
No comments:
Post a Comment