D2D1_ELLIPSE structure
Contains the center point, x-radius, and y-radius of an ellipse.
Syntax
struct D2D1_ELLIPSE {
D2D1_POINT_2F point;
FLOAT radiusX;
FLOAT radiusY;
};
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.
Examples
For an example that shows how to create and render a D2D1_ELLIPSE, see How to Draw and Fill a Basic Shape.
Requirements
|
Minimum supported client |
Windows 7, Windows Vista with SP2 and Platform Update for Windows Vista [desktop apps | Windows Store apps] |
|---|---|
|
Minimum supported server |
Windows Server 2008 R2, Windows Server 2008 with SP2 and Platform Update for Windows Server 2008 [desktop apps | Windows Store apps] |
|
Minimum supported phone |
Windows Phone 8.1 [Windows Phone Silverlight 8.1 and Windows Runtime apps] |
|
Header |
|
See also