The (signed) width and height of the bounding box.
(self)
| 356 | |
| 357 | @property |
| 358 | def size(self): |
| 359 | """The (signed) width and height of the bounding box.""" |
| 360 | points = self.get_points() |
| 361 | return points[1] - points[0] |
| 362 | |
| 363 | @property |
| 364 | def bounds(self): |