Reputation: 770
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.
Upvotes: 4
Views: 933
Reputation: 19117
Or use native .Net in form of WPF. Using a DrawingBrush you can project whatever you like over any vector path you design.
Upvotes: 0
Reputation: 84742
I would use Scalable Vector Graphics (SVG). This is ideal for manipulating vectorial images. You may want to look at SvgNet.
Upvotes: 1