Click here to Skip to main content
15,891,184 members

Comments by CodeNomad (Top 1 by date)

CodeNomad 24-Aug-11 2:18am View    
Deleted
Thanks!for ur interest in helping out :)

i've created this trial class and have this snippet...

void snake::createSnake()
{
while (cnt==0){
for (i;i<=800;i++){
cnt++;
rectangle(10+i,300,i,310);
rectangle(20+i,300,10+i,310);
rectangle(30+i,300,20+i,310);
rectangle(40+i,300,30+i,310);
rectangle(50+i,300,40+i,310);
rectangle(60+i,300,50+i,310);
rectangle(70+i,300,60+i,310);
Sleep(10);
cleardevice();
}
}
}

i'm trying to manipulate this code snippet...this is just a trial and not the final codes yet. i just want to try it out if i could move the rectangles. thanks... i'm really starting from scratch... and it isn't easy... lol... but thanks a lot!