add method

add

Adds the specified Size to the specified Point.

Returns

The Point that is the result of the addition operation.

def add(self, point, size):
    ...
ParameterTypeDescription
pointPointThe Point to add to.
sizeSizeThe Size to add to the point.

See Also