Search code examples
c#compact-framework

Draw Bezier curves in the CompactFramework


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)?


Solution

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