Fixed radii calculations and their processing for external threads

This commit is contained in:
Markus Lampert
2022-08-07 18:00:29 -07:00
parent 020f721ec2
commit d54ad5048d
2 changed files with 20 additions and 12 deletions

View File

@@ -38,7 +38,9 @@ class TestObject(object):
def radii(internal, major, minor, toolDia, toolCrest):
"""test radii function for simple testing"""
return (minor, major)
if internal:
return (minor, major)
return (major, minor)
class TestPathThreadMilling(PathTestBase):