(self)
| 102 | return mi.GeomType(int(g)) |
| 103 | |
| 104 | def center(self) -> mi.Point: |
| 105 | c = self.ft.center() |
| 106 | return from_pygen_point(c) |
| 107 | |
| 108 | def geometry(self) -> Union[List[mi.Point], List[mi.Triangle]]: |
| 109 | if self.geom_type() == mi.GeomType.area: |
nothing calls this directly
no test coverage detected