Difference between revisions of "Exploring Livarot"
Jump to navigation
Jump to search
Line 27: | Line 27: | ||
# Here whatever actual function you wanna perform is called. If you’re tweaking, you would call <code>shape->MakeTweak</code>, if you’re performing outset/inset, you’d call <code>shape->MakeOffset</code>. Similar functions exist for boolean operations. | # Here whatever actual function you wanna perform is called. If you’re tweaking, you would call <code>shape->MakeTweak</code>, if you’re performing outset/inset, you’d call <code>shape->MakeOffset</code>. Similar functions exist for boolean operations. | ||
# Calling <code>shape->ConvertToForme(path)</code>. This converts the shape object back to a path whose SVG description you can grab and put in the XML tree. | # Calling <code>shape->ConvertToForme(path)</code>. This converts the shape object back to a path whose SVG description you can grab and put in the XML tree. | ||
===Source=== | |||
Livarot is available at SourceForge. There is a newer, C++ based version.[https://sourceforge.net/projects/livarot/] |
Revision as of 08:37, 25 March 2020
Why is it being used?
- Tweak Tool (Shape->MakeTweak())
- Flood Tool (Shape->MakeOffset())
- Path Offsetting
- Inset/Outset (Livarot)
- Dynamic Offset (Livarot)
- Linked Offset (Livarot)
- SPOffset (dynamic/linked offset) (Livarot)
- LPEOffset (Livarot to flatten, half_outline())
- Boolean Operations
- Flowing Text (Shape->Scan(), Shape->Transform())
- Path Simplification (Path->Coalesce() or Path->ConvertEvenLines() + path->Simplify())
- Path Flattening (lpe-offset.pp, elsewhere?)
Much of the code that uses Livarot to offset is duplicate three times:
- sp_selected_path_do_offset()
- sp_selected_path_create_offset_object() (This might not actually be needed as presumably the code in SPOffset::set_shape is what is displayed.)
- SPOffset::set_shape()
The common code should be made into a single function.
How's it typically used?
- Creating a livarot
Path
object by using Inkscape’s functions such asPath_for_item
orPath_for_pathvector
. These functions just store path descriptions inside thePath
object. Such asmoveTo
,lineTo
,cubicTo
, etc. These are just instructions. - Calling
path->Convert
orpath->ConvertWithBackData
. Given a threshold value, these functions create a polygon that approximates the path descriptions given in step 1. The smaller the threshold value, the better the approximation. This approximation is the fundamental tool of livarot that gives it the ability to do things like path boolean operations. - Calling
path->Fill(shape, ...)
. This creates a directed graph structure from the approximated polygon. A directed graph just has points connected by edges. - Calling
shape->ConvertToShape(shape_input, ...)
. This function converts the graph created earlier, to a polygon without any self-intersections or duplicate points. It is one of the most important functions of livarot. It also takes a fill rule as the argument. - Here whatever actual function you wanna perform is called. If you’re tweaking, you would call
shape->MakeTweak
, if you’re performing outset/inset, you’d callshape->MakeOffset
. Similar functions exist for boolean operations. - Calling
shape->ConvertToForme(path)
. This converts the shape object back to a path whose SVG description you can grab and put in the XML tree.
Source
Livarot is available at SourceForge. There is a newer, C++ based version.[1]