[ create a new paste ] login | about

Link: http://codepad.org/rMHhwLiL    [ raw code | fork ]

hurracane - C, pasted on Jun 16:
1
2
3
4
5
6
7
8
9
10
11
12
13
lift(targetname, units_omhoog, duratie, wachttijd_tussen_iteraties)
{
	brush = getent(targetname,"targetname");
	startpos = lift.origin;
	while(1)
	{
		wait wachttijd_tussen_iteraties;
		brush moveZ(units_omhoog, duratie);
		brush waittill("movedone");
		brush moveTo(startpos, duratie);
		brush waittill("movedone");
	}
}


Create a new paste based on this one


Comments: