The CAM Vcarve command is primarily for center-line engraving a Draft ShapeString onto a part. However, it may be useful for other kinds of 2D.
Unlike engraving which follows the lines in the shapestring, V-carving uses a V-shaped cutter and attempts to clear the area by moving the cutter down the center of the region and varying the depth of cut. Since a v-cutter radius varies with the depth, the width of cut varies as well. The result is a more natural looking cut, particularly for serif fonts.
Example Vcarving Path
The V-carve algorithm calculates a path down the center-line of a region using a Voronoi diagram. This center-line is the path the tool will follow in the XY-plane. It next calculates a 'maximum inscribed circle' along the path. This is the largest circle that can be drawn at that point and remain entirely inside the clearing area. Using the circle radius and the tip angle of the cutter, the depth of cut is calculated.
SVG files require some massaging, both in the editor and in the Draft Workbench:
In the editor (e.g. Inkscape): make sure the file only contains paths and that the paths are ungrouped; make sure there are no self-intersecting paths, (in Inkscape) use Path → Simplify and union to join paths that overlap.
Import the SVG using File → Import → select "SVG as geometry"
The result should look similar to this:
Above: Results of importing 'SVG as geometry'
Paths with holes (letters, the vine in the image above) are imported as 2 separate paths (named along the lines of Path905 and Path905001 in the Tree View), one of them is the hole and the other one is the outline; we'll deal with this in the next step