[bindings] Fix overload order

This commit is contained in:
Frank Martinez
2025-10-07 12:04:08 -05:00
parent f6615763ad
commit d4d7cabdc5
9 changed files with 50 additions and 47 deletions

View File

@@ -521,6 +521,12 @@ class TopoShape(ComplexGeoData):
"""
...
@overload
@constmethod
def makeFillet(self, radius: float, edgeList: List, /) -> TopoShape: ...
@overload
@constmethod
def makeFillet(self, radius1: float, radius2: float, edgeList: List, /) -> TopoShape: ...
@constmethod
def makeFillet(self, *args) -> TopoShape:
"""
@@ -531,12 +537,13 @@ class TopoShape(ComplexGeoData):
"""
...
@overload
@constmethod
def makeFillet(self, radius: float, edgeList: List, /) -> TopoShape: ...
def makeChamfer(self, radius: float, edgeList: List, /) -> TopoShape: ...
@overload
@constmethod
def makeFillet(self, radius1: float, radius2: float, edgeList: List, /) -> TopoShape: ...
def makeChamfer(self, radius1: float, radius2: float, edgeList: List, /) -> TopoShape: ...
@constmethod
def makeChamfer(self, *args) -> TopoShape:
"""
@@ -547,12 +554,6 @@ class TopoShape(ComplexGeoData):
"""
...
@overload
@constmethod
def makeChamfer(self, radius: float, edgeList: List, /) -> TopoShape: ...
@overload
@constmethod
def makeChamfer(self, radius1: float, radius2: float, edgeList: List, /) -> TopoShape: ...
@constmethod
def makeThickness(self, faces: List, offset: float, tolerance: float, /) -> TopoShape:
"""