Draw Bezier curves in the CompactFramework

74 Views Asked by At

In the full .NET version, Graphics.DrawBeziers can be used to draw a series of cubic Bezier curves. According to this MSDN article, this is not available in the .NET CompactFramework (both v2.0 and v3.5). Can Bezier curves be drawn "from scratch" in the CompactFramework (or P/Invoked)?

1

There are 1 best solutions below

0
On BEST ANSWER

This excellent CodeProject article describes how to generate the Bezier curves from first principles. Stumbled upon the article some time after asking the question.