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):
...
Parameter | Type | Description |
---|
point | Point | The Point to add to. |
size | Size | The Size to add to the point . |
See Also