Answers the rendered value in mm. >>> u = fr(2, base=mm(10)) >>> u, u.mm, mm(u) (2fr, 5, 5mm)
(self)
| 1505 | pt = property(_get_pt) |
| 1506 | |
| 1507 | def _get_mm(self): |
| 1508 | """Answers the rendered value in mm. |
| 1509 | |
| 1510 | >>> u = fr(2, base=mm(10)) |
| 1511 | >>> u, u.mm, mm(u) |
| 1512 | (2fr, 5, 5mm) |
| 1513 | """ |
| 1514 | # Renders value and casts it to mm. |
| 1515 | return asIntOrFloat(mm(self.ru).rv) |
| 1516 | mm = property(_get_mm) |
| 1517 | |
| 1518 | def _get_p(self): |
nothing calls this directly
no test coverage detected