[]
        
(Showing Draft Content)

C1.Util.DX.Direct2D.Geometry.FillContainsPoint

FillContainsPoint Method

FillContainsPoint(Point2L)

Indicates whether the area filled by the geometry would contain the specified point given the specified flattening tolerance.

Declaration
public bool FillContainsPoint(Point2L point)
Public Function FillContainsPoint(point As Point2L) As Boolean
Parameters
Type Name Description
Point2L point

The point to test.

Returns
Type Description
bool

When this method returns, contains a bool value that is true if the area filled by the geometry contains point; otherwise, false.You must allocate storage for this parameter.

FillContainsPoint(Point2F)

Indicates whether the area filled by the geometry would contain the specified point given the specified flattening tolerance.

Declaration
public bool FillContainsPoint(Point2F point)
Public Function FillContainsPoint(point As Point2F) As Boolean
Parameters
Type Name Description
Point2F point

The point to test.

Returns
Type Description
bool

When this method returns, contains a bool value that is true if the area filled by the geometry contains point; otherwise, false.You must allocate storage for this parameter.

FillContainsPoint(Point2L, float)

Indicates whether the area filled by the geometry would contain the specified point given the specified flattening tolerance.

Declaration
public bool FillContainsPoint(Point2L point, float flatteningTolerance)
Public Function FillContainsPoint(point As Point2L, flatteningTolerance As Single) As Boolean
Parameters
Type Name Description
Point2L point

The point to test.

float flatteningTolerance

The numeric accuracy with which the precise geometric path and path intersection is calculated. Points missing the fill by less than the tolerance are still considered inside. Smaller values produce more accurate results but cause slower execution.

Returns
Type Description
bool

When this method returns, contains a bool value that is true if the area filled by the geometry contains point; otherwise, false.You must allocate storage for this parameter.

FillContainsPoint(Point2F, float)

Indicates whether the area filled by the geometry would contain the specified point given the specified flattening tolerance.

Declaration
public bool FillContainsPoint(Point2F point, float flatteningTolerance)
Public Function FillContainsPoint(point As Point2F, flatteningTolerance As Single) As Boolean
Parameters
Type Name Description
Point2F point

The point to test.

float flatteningTolerance

The numeric accuracy with which the precise geometric path and path intersection is calculated. Points missing the fill by less than the tolerance are still considered inside. Smaller values produce more accurate results but cause slower execution.

Returns
Type Description
bool

When this method returns, contains a bool value that is true if the area filled by the geometry contains point; otherwise, false.You must allocate storage for this parameter.

FillContainsPoint(Point2L, Matrix3x2, float)

Indicates whether the area filled by the geometry would contain the specified point given the specified flattening tolerance.

Declaration
public bool FillContainsPoint(Point2L point, Matrix3x2 worldTransform, float flatteningTolerance)
Public Function FillContainsPoint(point As Point2L, worldTransform As Matrix3x2, flatteningTolerance As Single) As Boolean
Parameters
Type Name Description
Point2L point

The point to test.

Matrix3x2 worldTransform

The transform to apply to the geometry prior to testing for containment, or NULL.

float flatteningTolerance

The numeric accuracy with which the precise geometric path and path intersection is calculated. Points missing the fill by less than the tolerance are still considered inside. Smaller values produce more accurate results but cause slower execution.

Returns
Type Description
bool

When this method returns, contains a bool value that is true if the area filled by the geometry contains point; otherwise, false.You must allocate storage for this parameter.

FillContainsPoint(Point2F, Matrix3x2?, float)

HRESULT ID2D1Geometry::FillContainsPoint([In] D2D_POINT_2F point,[In, Optional] const D2D_MATRIX_3X2_F* worldTransform,[In] float flatteningTolerance,[Out] BOOL* contains)

Declaration
public bool FillContainsPoint(Point2F point, Matrix3x2? worldTransform, float flatteningTolerance)
Public Function FillContainsPoint(point As Point2F, worldTransform As Matrix3x2?, flatteningTolerance As Single) As Boolean
Parameters
Type Name Description
Point2F point
Matrix3x2? worldTransform
float flatteningTolerance
Returns
Type Description
bool