Exemplo n.º 1
0
 protected void CreateChildren(SvgElement svgElement, SKRect skViewport, DrawableBase?parent, IAssetLoader assetLoader, HashSet <Uri>?references, DrawAttributes ignoreAttributes)
 {
     foreach (var child in svgElement.Children)
     {
         var drawable = DrawableFactory.Create(child, skViewport, parent, assetLoader, references, ignoreAttributes);
         if (drawable is { })
Exemplo n.º 2
0
 protected void CreateChildren(SvgElement svgElement, Rect skOwnerBounds, DrawableBase?parent, IAssetLoader assetLoader, Attributes ignoreAttributes)
 {
     foreach (var child in svgElement.Children)
     {
         var drawable = DrawableFactory.Create(child, skOwnerBounds, parent, assetLoader, ignoreAttributes);
         if (drawable is { })