Answers self as rounded int, rendered and converted to points. >>> int(pt(20.2)) 20
(self)
| 614 | ru = property(_get_ru) |
| 615 | |
| 616 | def __int__(self): |
| 617 | """Answers self as rounded int, rendered and converted to points. |
| 618 | |
| 619 | >>> int(pt(20.2)) |
| 620 | 20 |
| 621 | """ |
| 622 | return asIntOrFloat(round(self.pt)) |
| 623 | |
| 624 | def __float__(self): |
| 625 | """Answers self as float, rendered and converted to points. |
nothing calls this directly
no test coverage detected