Exemplo n.º 1
0
unsigned long SVGPathElement::getPathSegAtLength(float length)
{
    return pathSegList()->getPathSegAtLength(length);
}
Exemplo n.º 2
0
unsigned long SVGPathElement::getPathSegAtLength(float length, ExceptionCode& ec)
{
    return pathSegList()->getPathSegAtLength(length, ec);
}
Exemplo n.º 3
0
Path SVGPathElement::toPathData() const
{
    return pathSegList()->toPathData();
}
void SVGPathElement::svgClosePath()
{
    ExceptionCode ec = 0;
    pathSegList()->appendItem(createSVGPathSegClosePath(), ec);
}