示例#1
0
    public SVGGraphicsStroke(SVGGraphics graphics)
    {
        _graphics = graphics;

        _basicDraw = new SVGBasicDraw();
        _basicDraw.SetPixelMethod = new SetPixelDelegate(SetPixel);
    }
示例#2
0
    public SVGGraphicsStroke(SVGGraphics graphics)
    {
        _graphics = graphics;

        _basicDraw = new SVGBasicDraw();
        _basicDraw.SetPixelMethod = new SetPixelDelegate(SetPixel);
    }
示例#3
0
    public SVGGraphicsFill(SVGGraphics _graphics)
    {
        graphics = _graphics;
        flagStep = 0;
        width = 0;
        height = 0;

        subW = subH = 0;
        //Basic Draw
        basicDraw = new SVGBasicDraw { SetPixelMethod = SetPixelForFlag };
    }
示例#4
0
    public SVGGraphicsFill(SVGGraphics graphics)
    {
        _graphics = graphics;
        _flagStep = 0;
        _width = 0;
        _height = 0;

        _subW = _subH = 0;
        //Basic Draw
        _basicDraw = new SVGBasicDraw {SetPixelMethod = SetPixelForFlag};
    }
示例#5
0
    public SVGGraphicsFill(SVGGraphics _graphics)
    {
        graphics = _graphics;
        flagStep = 0;
        width    = 0;
        height   = 0;

        subW = subH = 0;
        //Basic Draw
        basicDraw = new SVGBasicDraw {
            SetPixelMethod = SetPixelForFlag
        };
    }
示例#6
0
    public SVGGraphicsFill(SVGGraphics graphics)
    {
        _graphics = graphics;
        _flagStep = 0;
        _width    = 0;
        _height   = 0;

        _subW = _subH = 0;
        //Basic Draw
        _basicDraw = new SVGBasicDraw {
            SetPixelMethod = SetPixelForFlag
        };
    }
示例#7
0
    public SVGGraphicsFill(SVGGraphics graphics)
    {
        this._graphics = graphics;
        this._flagStep = 0;
        this._width = 0;
        this._height = 0;

        this._translateX = 0;
        this._translateY = 0;
        this._subW = this._subH = 0;
        //Basic Draw
        this._basicDraw = new SVGBasicDraw();
        this._basicDraw.SetPixelMethod = new SetPixelDelegate(SetPixelForFlag);
    }
示例#8
0
    public SVGGraphicsFill(SVGGraphics graphics)
    {
        this._graphics = graphics;
        this._flagStep = 0;
        this._width    = 0;
        this._height   = 0;

        this._translateX = 0;
        this._translateY = 0;
        this._subW       = this._subH = 0;
        //Basic Draw
        this._basicDraw = new SVGBasicDraw();
        this._basicDraw.SetPixelMethod = new SetPixelDelegate(SetPixelForFlag);
    }