views:

355

answers:

3

I am looking for a drawing library or code examples to draw images or vector shapes repeated along a path which could be curved.

I found a cocoa library which is what I am looking for http://apptree.net/drawkitmain.htm but for .NET.

+1  A: 

I would use Scalable Vector Graphics (SVG). This is ideal for manipulating vectorial images. You may want to look at SvgNet.

David Segonds
A: 

You can also check this @ codeproject.

Bruno Shine
A: 

Or use native .Net in form of WPF. Using a DrawingBrush you can project whatever you like over any vector path you design.

Scott Weinstein