diff --git a/reference/cairo/cairocontext/copypathflat.xml b/reference/cairo/cairocontext/copypathflat.xml index 3915c0ce24..57b3229863 100644 --- a/reference/cairo/cairocontext/copypathflat.xml +++ b/reference/cairo/cairocontext/copypathflat.xml @@ -21,7 +21,14 @@ CairoContextcontext - A CairoContext object + Gets a flattened copy of the current path and returns it to the user as a CairoPath. + + + This function is like CairoContext::copyPath except that any curves + in the path will be approximated with piecewise-linear approximations, + (accurate to within the current tolerance value). That is, the result is guaranteed to not + have any elements of type CAIRO_PATH_CURVE_TO which will instead be replaced by a series of + CAIRO_PATH_LINE_TO elements. @@ -33,7 +40,7 @@ context - Description... + A CairoContext object @@ -44,14 +51,7 @@ &reftitle.returnvalues; - Gets a flattened copy of the current path and returns it to the user as a CairoPath. - - - This function is like CairoContext::copyPath except that any curves - in the path will be approximated with piecewise-linear approximations, - (accurate to within the current tolerance value). That is, the result is guaranteed to not - have any elements of type CAIRO_PATH_CURVE_TO which will instead be replaced by a series of - CAIRO_PATH_LINE_TO elements. + A copy of the current path