System.Drawing.Graphics.DrawEllipticalArc C# (CSharp) Method

DrawEllipticalArc() private method

private DrawEllipticalArc ( Rectangle arcRect, double lambda1, double lambda2, bool isPieSlice ) : void
arcRect Rectangle
lambda1 double
lambda2 double
isPieSlice bool
return void
        internal void DrawEllipticalArc(Rectangle arcRect, double lambda1, double lambda2,
		                     bool isPieSlice)
        {
            #if MAISONABE
            DrawEllipticalArc(arcRect.X + arcRect.Width / 2,
                 arcRect.Y + arcRect.Height / 2,
                 arcRect.Width / 2,
                 arcRect.Height / 2, 0, lambda1, lambda2, isPieSlice
                              );
            #else
            make_arcs(this.context,
                      arcRect.X, arcRect.Y, arcRect.Width, arcRect.Height,
                      (float)lambda1, (float)lambda2,
                      false, true, isPieSlice);
            #endif
        }

Same methods

Graphics::DrawEllipticalArc ( PointF center, double a, double b, double theta, double lambda1, double lambda2, bool isPieSlice ) : void
Graphics::DrawEllipticalArc ( RectangleF arcRect, double lambda1, double lambda2, bool isPieSlice ) : void
Graphics::DrawEllipticalArc ( double cx, double cy, double a, double b, double theta, double lambda1, double lambda2, bool isPieSlice ) : void
Graphics::DrawEllipticalArc ( float x, float y, float width, float height, double lambda1, double lambda2, bool isPieSlice ) : void