Example #1
0
 /***********************************************************************************/
 public Implement(TextAsset svgFile)
 {
     this._SVGFile = svgFile;
     _device = new SVGDevice();
     _graphics = new SVGGraphics(_device);
 }
Example #2
0
 //-----
 public SVGGraphics(SVGDevice device)
 {
     this._device = device;
     this._graphicsFill = new SVGGraphicsFill(this);
     this._graphicsStroke = new SVGGraphicsStroke(this);
 }