- In Geometry Editor I fixed bug in Arc modes. Arc mode shortcut key is now key 'M' and arc direction change shortcut key is 'D'

This commit is contained in:
Marius Stanciu
2019-04-14 02:46:55 +03:00
parent 081231aca4
commit e92cab2e96
3 changed files with 18 additions and 4 deletions

View File

@@ -7589,7 +7589,7 @@ def three_point_circle(p1, p2, p3):
center = a1 + b1 * T[0]
# Radius
radius = norm(center - p1)
radius = np.linalg.norm(center - p1)
return center, radius, T[0]