D2D1_ELLIPSE structure (d2d1.h)

Contains the center point, x-radius, and y-radius of an ellipse.

Syntax

typedef struct D2D1_ELLIPSE {
  D2D1_POINT_2F point;
  FLOAT         radiusX;
  FLOAT         radiusY;
} D2D1_ELLIPSE;

Members

point

Type: D2D1_POINT_2F

The center point of the ellipse.

radiusX

Type: FLOAT

The X-radius of the ellipse.

radiusY

Type: FLOAT

The Y-radius of the ellipse.

Requirements

Requirement Value
Minimum supported client Windows 7, Windows Vista with SP2 and Platform Update for Windows Vista [desktop apps | UWP apps]
Minimum supported server Windows Server 2008 R2, Windows Server 2008 with SP2 and Platform Update for Windows Server 2008 [desktop apps | UWP apps]
Header d2d1.h

See also

How to Draw and Fill a Basic Shape