Rect.round

Rounds the origin and size of the given rectangle to their nearest integer values; the rounding is guaranteed to be large enough to have an area bigger or equal to the original rectangle, but might not fully contain its extents. Use graphene.rect.Rect.roundExtents in case you need to round to a rectangle that covers fully the original one.

This function is the equivalent of calling floor on the coordinates of the origin, and ceil on the size.

More...
class Rect
void
round

Parameters

res graphene.rect.Rect

return location for the rounded rectangle

Detailed Description

Deprecated: Use graphene.rect.Rect.roundExtents instead