Volodymyr K.
Volodymyr K.

Reputation: 679

What C++ library can i use to create and simplify Bezier curves

In a program I have a polyline that is a set of points. I need to create Bezier curve from it and then simplify it using some threshold value.

Are there any C++ libraries that can be helpful for that task?

Upvotes: 1

Views: 4133

Answers (1)

Julien
Julien

Reputation: 2248

The last time I checked for the computation of Bézier curves in c++ I did not find anything that fits my need, so I wrote this: http://libclaw.sourceforge.net/curves.html.

It may help you to define the curves but there is nothing specifically related to their simplification however.

Upvotes: 3

Related Questions