Svg.Pathing.SvgArcSegment.SvgArcSegment C# (CSharp) Method

SvgArcSegment() public method

public SvgArcSegment ( PointF start, float radiusX, float radiusY, float angle, SvgArcSize size, SvgArcSweep sweep, PointF end ) : System
start System.Drawing.PointF
radiusX float
radiusY float
angle float
size SvgArcSize
sweep SvgArcSweep
end System.Drawing.PointF
return System
        public SvgArcSegment(PointF start, float radiusX, float radiusY, float angle, SvgArcSize size, SvgArcSweep sweep, PointF end)
            : base(start, end)
        {
            this.RadiusX = Math.Abs(radiusX);
            this.RadiusY = Math.Abs(radiusY);
            this.Angle = angle;
            this.Sweep = sweep;
            this.Size = size;
        }