Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 1.02 KB

README.md

File metadata and controls

21 lines (14 loc) · 1.02 KB

Bezier curve approximation algorithm with biarcs

Synopsis

Simple C# application to illustrate the algorithm of approximating a cubic bezier curve with biarcs. The algorithm is explained in the blog post at http://dlacko.org/blog/2016/10/19/approximating-bezier-curves-by-biarcs/.

Implementation

This is a new implementation based on dotnet MAUI as the original Windows.Form implementation put a hard requirement on Windows. You can still find theoriginal one on the master branch.

The algorithm is also be available in Haskell, incorporated into my JuicyGcode project.

Installation

  • Install community edition of Visual Studio 2022 (at least 17.4) or the latest Visual Studio for Mac
  • Install .NET 7.0 SDK
  • Check out the repository and run dotnet workload restore
  • Open BiArcTutorial.csproj and pray (I did not manage to run the project on Windows only on Mac)