Log In  


Sorry, this cartridge is not currently available.
by
Cart #9984 | 2015-04-19 | Code ▽ | Embed ▽ | No License

I can't seem to figure out the issue with my code.
I am trying to draw some circles at coordinates stored in nested arrays, and while i can retrieve the coordinates to print them the circles do not seem to draw. I do not get an error, nothing seems to show up?

--coords for cube
nodes = {}
nodes[1] = {-10, -10, -10}
nodes[2] = {-10, -10,  10}
nodes[3] = {-10,  10, -10}
nodes[4] = {-10,  10,  10}
nodes[5] = { 10, -10, -10}
nodes[6] = { 10, -10,  10}
nodes[7] = { 10,  10, -10}
nodes[8] = { 10,  10,  10}
--these circles will not draw??
	for i=1,8 do 
		circfill(
		nodes[i][1], 
		nodes[i][2], 
		nodesize)
	end



[Please log in to post a comment]