Difference between revisions of "Path Library Improvement Project"

From Inkscape Wiki
Jump to navigation Jump to search
(Created page with "This wiki page will hold all extra documentation that I intend to write as I progress in the project. The first functionality that I have succeeded to implement is Path Simpl...")
 
Line 4: Line 4:


== Path Simplification ==
== Path Simplification ==
It is a two step process:
# Given a threshold value, break a path into line segments (we call this a polyline)
# Fit cubic bezier patches on the polyline such that the total error is controlled and the number of patches are kept minimum.

Revision as of 08:50, 14 June 2020

This wiki page will hold all extra documentation that I intend to write as I progress in the project.

The first functionality that I have succeeded to implement is Path Simplification.

Path Simplification

It is a two step process:

  1. Given a threshold value, break a path into line segments (we call this a polyline)
  2. Fit cubic bezier patches on the polyline such that the total error is controlled and the number of patches are kept minimum.