コード例 #1
0
ファイル: SVGGradient.cs プロジェクト: znsoft/TUSA
 public SVGGradient(string pID, bool pLinear, Attributes pAttributes)
 {
     this.mID            = pID;
     this.mHref          = SVGParserUtils.parseHref(pAttributes);
     this.mLinear        = pLinear;
     this.mSVGAttributes = new SVGAttributes(pAttributes, true);
 }
コード例 #2
0
ファイル: SVGFilter.cs プロジェクト: znsoft/TUSA
 public SVGFilter(string pID, Attributes pAttributes)
 {
     this.mID            = pID;
     this.mHref          = SVGParserUtils.parseHref(pAttributes);
     this.mSVGAttributes = new SVGAttributes(pAttributes, true);
 }