Parametric bounds (u_min, u_max, v_min, v_max).
(self)
| 3284 | return self.uvBounds() |
| 3285 | |
| 3286 | def uvBounds(self) -> tuple[float, float, float, float]: |
| 3287 | """ |
| 3288 | Parametric bounds (u_min, u_max, v_min, v_max). |
| 3289 | """ |
| 3290 | |
| 3291 | return BRepTools.UVBounds_s(self.wrapped) |
| 3292 | |
| 3293 | def paramAt(self, pt: VectorLike) -> tuple[float, float]: |
| 3294 | """ |