Search found 4 matches
- Sat Sep 25, 2010 2:23 am
- Forum: Help with using Inkscape
- Topic: Vector array
- Replies: 7
- Views: 1967
Re: Vector array
I mean that I want the vectors, or most of them if there are very many of them, so that they can be made into an array of vectors in the code. This is an example of making a rectangle's array: cpVect array[4] = {cpv(x, y), cpv(x + w, y), cpv(x + w, y + h), cpv(x, y + h)}; It is strange that the docu...
- Fri Sep 24, 2010 4:05 am
- Forum: Help with using Inkscape
- Topic: Vector array
- Replies: 7
- Views: 1967
Re: Vector array
I want to easily do shapes with Inkscape using the vector arrays instead of making the shape manually in code. How to get the vectors from n SVG file?
- Fri Sep 24, 2010 1:33 am
- Forum: Help with using Inkscape
- Topic: Vector array
- Replies: 7
- Views: 1967
Re: Vector array
I want to create shapes easily with Inkscape and use their vector arrays, instead of manually making the shapes from code. I am going to use the vector arrays to make collision shapes in a physics engine.
- Thu Sep 23, 2010 6:07 am
- Forum: Help with using Inkscape
- Topic: Vector array
- Replies: 7
- Views: 1967
Vector array
How to get the vector array from an SVG file? (so that it can be used in games)