ID2D1Factory::CreateEllipseGeometry(constD2D1_ELLIPSE*,ID2D1EllipseGeometry**) method (d2d1.h)

Creates an ID2D1EllipseGeometry.

Syntax

HRESULT CreateEllipseGeometry(
  const D2D1_ELLIPSE   *ellipse,
  ID2D1EllipseGeometry **ellipseGeometry
);

Parameters

ellipse

Type: [in] const D2D1_ELLIPSE*

A value that describes the center point, x-radius, and y-radius of the ellipse geometry.

ellipseGeometry

Type: [out] ID2D1EllipseGeometry**

When this method returns, contains the address of the pointer to the ellipse geometry created by this method.

Return value

Type: HRESULT

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Requirements

Requirement Value
Target Platform Windows
Header d2d1.h
Library D2d1.lib
DLL D2d1.dll

See also

ID2D1Factory