Ben Martin
Ben Martin

Reputation: 770

Draw shapes or images on a curved path

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

Answers (2)

Scott Weinstein
Scott Weinstein

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

David Segonds
David Segonds

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

Related Questions