Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="XPen"/> class.
 /// </summary>
 public XPen(XPen pen)
 {
     _color       = pen._color;
     _width       = pen._width;
     _lineJoin    = pen._lineJoin;
     _lineCap     = pen._lineCap;
     _dashStyle   = pen._dashStyle;
     _dashOffset  = pen._dashOffset;
     _dashPattern = pen._dashPattern;
     if (_dashPattern != null)
     {
         _dashPattern = (double[])_dashPattern.Clone();
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Replaces this path with curves that enclose the area that is filled when this path is drawn
 /// by the specified pen.
 /// </summary>
 public void Widen(XPen pen, XMatrix matrix, double flatness)
 {
     // Just do nothing.
 }
Exemplo n.º 3
0
 /// <summary>
 /// Replaces this path with curves that enclose the area that is filled when this path is drawn
 /// by the specified pen.
 /// </summary>
 public void Widen(XPen pen, XMatrix matrix)
 {
     // Just do nothing.
 }
Exemplo n.º 4
0
        // --------------------------------------------------------------------------------------------

        /// <summary>
        /// Replaces this path with curves that enclose the area that is filled when this path is drawn
        /// by the specified pen.
        /// </summary>
        public void Widen(XPen pen)
        {
            // Just do nothing.
        }