Table of Contents

Struct Ellipse

Namespace
SharpDX.Direct2D1
Assembly
SharpDX.Direct2D1.dll

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

public struct Ellipse
Inherited Members

Constructors

Ellipse(RawVector2, float, float)

Initializes a new instance of the Ellipse struct.

public Ellipse(RawVector2 center, float radiusX, float radiusY)

Parameters

center RawVector2

The center.

radiusX float

The radius X.

radiusY float

The radius Y.

Fields

Point

The center point of the ellipse.

public RawVector2 Point

Field Value

RawVector2

RadiusX

The X-radius of the ellipse.

public float RadiusX

Field Value

float

RadiusY

The Y-radius of the ellipse.

public float RadiusY

Field Value

float