|
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.52">
Extended Construction APIsSynopsis
DescriptionThe simple construction APIs we have described just before allow you to build your own simple vector paths but it is often useful to be able to create circles, ellipses, straight lines with a non-zero width and such... To do so, we have the folowing functions available. Sample code for these API functions (namely, art_svp_vpath_stroke and art_vpath_dash) can be found there in the function make_path. Detailsstruct ArtVpathDash
This structure describes the dashing style to be applied with art_vpath_dash to a vpath. Figure 1. Dashes
art_vpath_dash ()
Creates a new vpath that is the result of applying dash style dash to vpath. This implementation has two known flaws: First, it adds a spurious break at the beginning of the vpath. The only way I see to resolve this flaw is to run the state forward one dash break at the beginning, and fix up by looping back to the first dash break at the end. This is doable but of course adds some complexity. Second, it does not suppress output points that are within epsilon of each other.
enum ArtPathStrokeJoinType
enum ArtPathStrokeCapType
art_svp_vpath_stroke ()
Computes an svp representing the stroked outline of vpath. The width of the stroked line is line_width. Lines are joined according to the join rule. Possible values are ART_PATH_STROKE_JOIN_MITER (for mitered joins), ART_PATH_STROKE_JOIN_ROUND (for round joins), and ART_PATH_STROKE_JOIN_BEVEL (for bevelled joins). The mitered join is converted to a bevelled join if the miter would extend to a distance of more than miter_limit * line_width from the actual join point. If there are open subpaths, the ends of these subpaths are capped according to the cap rule. Possible values are ART_PATH_STROKE_CAP_BUTT (squared cap, extends exactly to end point), ART_PATH_STROKE_CAP_ROUND (rounded half-circle centered at the end point), and ART_PATH_STROKE_CAP_SQUARE (squared cap, extending half line_width past the end point). The flatness parameter controls the accuracy of the rendering. It is most important for determining the number of points to use to approximate circular arcs for round lines and joins. In general, the resulting vector path will be within flatness pixels of the "ideal" path containing actual circular arcs. I reserve the right to use the flatness parameter to convert bevelled joins to miters for very small turn angles, as this would reduce the number of points in the resulting outline path. The resulting path is "clean" with respect to self-intersections, i.e. the winding number is 0 or 1 at each point.
art_vpath_new_circle ()
Creates a new polygon closely approximating a circle with center (x, y) and radius r. Currently, the number of points used in the approximation is fixed, but that will probably change.
|