예제 #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
 public void setParentSVGAttributes(SVGAttributes pParentSVGAttributes)
 {
     this.mParentSVGAttributes = pParentSVGAttributes;
 }
예제 #3
0
 public SVGAttributes(SVGAttributes pParentSVGAttributes, Attributes pAttributes, bool pAttributesDeepCopy)
 {
     this.mAttributes          = (pAttributesDeepCopy) ? new Attributes(pAttributes) : pAttributes;
     this.mAttributes          = pAttributes;
     this.mParentSVGAttributes = pParentSVGAttributes;
 }
예제 #4
0
		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);
		}
예제 #5
0
파일: SVGFilter.cs 프로젝트: jdluzen/xamsvg
		public SVGFilter(string pID, Attributes pAttributes) {
			this.mID = pID;
			this.mHref = SVGParserUtils.parseHref(pAttributes);
			this.mSVGAttributes = new SVGAttributes(pAttributes, true);
		}
예제 #6
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);
 }
예제 #7
0
		public void setParentSVGAttributes(SVGAttributes pParentSVGAttributes) {
			this.mParentSVGAttributes = pParentSVGAttributes;
		}
예제 #8
0
		public SVGAttributes(SVGAttributes pParentSVGAttributes, Attributes pAttributes, bool pAttributesDeepCopy) {
			this.mAttributes = (pAttributesDeepCopy) ? new Attributes(pAttributes) : pAttributes;
			this.mAttributes = pAttributes;
			this.mParentSVGAttributes = pParentSVGAttributes;
		}