Drawing program required, possibly vector art related
Posted: 2011-11-27 01:50pm
I am working on a Geometry Wars like game at the moment. The shapes are going to be drawn by connecting a set of points. So the players ship is going to look like this
(0,0.5,0)
(0.25,0,0)
(0, 0.25, 0)
(-0.25, 0, 0)
(0,0.5,0)
which is basically an arrowhead that looks like the player ship from the classic Asteroids! game.
Now the problem is I am arriving at these coordinates purely by trial and error. For complex shapes I have to draw them in Paint.NET and painstakingly note down the vertices and then translate them because the origin (0,0) sits somewhere in middle of the figure not upper left coordinate. Instead if I could draw some line art and get the program to output the vertice coordinates it would be great.
Is there anything that could do what I ask for ?
(0,0.5,0)
(0.25,0,0)
(0, 0.25, 0)
(-0.25, 0, 0)
(0,0.5,0)
which is basically an arrowhead that looks like the player ship from the classic Asteroids! game.
Now the problem is I am arriving at these coordinates purely by trial and error. For complex shapes I have to draw them in Paint.NET and painstakingly note down the vertices and then translate them because the origin (0,0) sits somewhere in middle of the figure not upper left coordinate. Instead if I could draw some line art and get the program to output the vertice coordinates it would be great.
Is there anything that could do what I ask for ?