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