INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- Calculates the delta between two coords
-- Determines whether the two given rectangles are equal
-- by comparing the coordinates of their upper-left corners
-- and delta-delta metrics.
-- Returns True if they have the same values, and False if they are
-- different
-- Moves the given rectangle by the specified offsets.
-- Changes the height and width by adding a delta value to each of
-- the coordinates. This delta can be negative or positive
-- Increases or decreases the coordinates of a rectangle.
-- The inflate method subtracts/adds x_amount units to the left and
-- y_amount units to the top ends of the rectangle and adds/subtracts
-- x_amount units from the delta and y_amount units from the delta
-- of the rectangle.
-- The x_amount and y_amount parameters are signed values; positive
-- values increase the rectangle, and negative values decreases him.
-- Calculates the intersection of two source rectangles and places the
-- coordinates of the intersection rectangle into the Current rectangle.
-- If the rectangles do not intersect, an empty rectangle (0, 0, 0, 0)
-- is placed into the Current rectangle.
-- Creates a rectangle from the difference of two others.
-- The rectangle specified by the source2 parameter is subtracted
-- from the rectangle specified by source1 only when the rectangles
-- intersect completely in either the x- or y-direction.
-- The result is placed in the current rectangle.
-- Creates the union of two rectangles. The union is the
-- smallest rectangle that contains both source rectangles.
-- Determines whether the specified rectangle is empty. A rectangle is
-- empty if its width or height is zero, or if both are zero.
-- Determines whether a point is in a rectangle
-- Determines if the Current rectangle intersects with the given
-- rectangle
-- shortest distance from point p to edge of Rect
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |