Minor fix (line 211)

pull/214/head
Darío Hereñú 2022-04-11 23:12:42 -03:00 zatwierdzone przez GitHub
rodzic 3bbd384ad2
commit c2196af42b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -208,7 +208,7 @@ class CamHypotrochoidCurve(bpy.types.Operator):
iter = int(maxangle * 10)
if iter > 10000: # do not calculate more than 10000 points
print("limiting calculatons to 10000 points")
print("limiting calculations to 10000 points")
iter = 10000
parametric.create_parametric_curve(f, offset=0.0, min=0, max=maxangle, use_cubic=True, iterations=iter)