CrossUI.GeometryFiguresExtensions.Ellipse C# (CSharp) Method

Ellipse() public static method

public static Ellipse ( this _, double x, double y, double width, double height ) : void
_ this
x double
y double
width double
height double
return void
        public static void Ellipse(this IGeometryFigures _, double x, double y, double width, double height)
        {
            _.Ellipse(new Rectangle(x, y, width, height));
        }