SKRegion.Intersects Method

Definition

Overloads

Intersects(SKRectI)

Check to see if the specified rectangle intersects with the current region.

Intersects(SKRegion)

Check to see if the specified region intersects with the current region.

Intersects(SKPath)

Check to see if the specified path intersects with the current region.

Intersects(SKRectI)

Check to see if the specified rectangle intersects with the current region.

public bool Intersects (SkiaSharp.SKRectI rect);

Parameters

rect
SKRectI

The rectangle to check with.

Returns

Returns true if the specified rectangle has a non-empty intersection with the current region.

Applies to

Intersects(SKRegion)

Check to see if the specified region intersects with the current region.

public bool Intersects (SkiaSharp.SKRegion region);

Parameters

region
SKRegion

The region to check with.

Returns

Returns true if the specified region has a non-empty intersection with the current region.

Applies to

Intersects(SKPath)

Check to see if the specified path intersects with the current region.

public bool Intersects (SkiaSharp.SKPath path);

Parameters

path
SKPath

The path to check with.

Returns

Returns true if the specified path has a non-empty intersection with the current region.

Applies to