SVGGCubicAbs.Render C# (CSharp) Method

Render() public method

public Render ( SVGGraphicsPath, path, ISVGPathDraw pathDraw ) : bool
path SVGGraphicsPath,
pathDraw ISVGPathDraw
return bool
    public bool Render(SVGGraphicsPath path, ISVGPathDraw pathDraw)
    {
        pathDraw.CubicCurveTo(path.matrixTransform.Transform(p1), path.matrixTransform.Transform(p2),
                          path.matrixTransform.Transform(point));
        return false;
    }