()
| 7144 | builders = [] |
| 7145 | |
| 7146 | def _make_builder() -> BRepOffsetAPI_MakePipeShell: |
| 7147 | |
| 7148 | rv = BRepOffsetAPI_MakePipeShell(spine.wrapped) |
| 7149 | if aux: |
| 7150 | rv.SetMode(_get_one_wire(aux).wrapped, True) |
| 7151 | else: |
| 7152 | rv.SetMode(False) |
| 7153 | |
| 7154 | rv.SetTransitionMode(_trans_mode_dict[transition]) |
| 7155 | |
| 7156 | return rv |
| 7157 | |
| 7158 | # try to get faces |
| 7159 | faces = s.Faces() |
no test coverage detected