public StreamGeometryContextImpl(StreamGeometryImpl target, Cairo.Path path)
        {
            _target = target;

            _surf     = new Cairo.ImageSurface(Cairo.Format.Argb32, 0, 0);
            _context  = new Cairo.Context(_surf);
            this.Path = path;

            if (this.Path != null)
            {
                _context.AppendPath(this.Path);
            }
        }
		public StreamGeometryContextImpl(StreamGeometryImpl target, Cairo.Path path)
        {
		    _target = target;

		    _surf = new Cairo.ImageSurface (Cairo.Format.Argb32, 0, 0);
			_context = new Cairo.Context (_surf);
			this.Path = path;

			if (this.Path != null) 
			{
				_context.AppendPath(this.Path);
			}
        }
Exemple #3
0
 public StreamGeometryContextImpl(StreamGeometryImpl imp)
 {
     _impl    = imp;
     _surf    = new Cairo.ImageSurface(Cairo.Format.Argb32, 0, 0);
     _context = new Cairo.Context(_surf);
 }
 public StreamGeometryContextImpl(StreamGeometryImpl imp)
 {
     this.impl = imp;
     this.surf = new Cairo.ImageSurface(Cairo.Format.Argb32, 0, 0);
     this.context = new Cairo.Context(this.surf);
 }
 public StreamGeometryContextImpl(StreamGeometryImpl imp)
 {
     this.impl = imp;
     points = new List<Point>();
 }
 public StreamGeometryContextImpl(StreamGeometryImpl imp)
 {
     _impl = imp;
     _surf = new Cairo.ImageSurface(Cairo.Format.Argb32, 0, 0);
     _context = new Cairo.Context(_surf);
 }