intersect method

intersect

Replaces this RectangleF structure with the intersection of itself and the specified RectangleF structure.

def intersect(self, rect):
    ...
ParameterTypeDescription
rectRectangleFThe rectangle to intersect.

intersect

Returns a RectangleF structure that represents the intersection of two rectangles. If there is no intersection, and empty RectangleF is returned.

Returns

A third RectangleF structure the size of which represents the overlapped area of the two specified rectangles.

def intersect(self, a, b):
    ...
ParameterTypeDescription
aRectangleFA first rectangle to intersect.
bRectangleFA second rectangle to intersect.

See Also