Metadata-Version: 2.1
Name: smallestenclosingcircle
Version: 0.0.1
Summary: Smallest Enclosing Circle
Home-page: https://github.com/lpasselin/smallestenclosingcircle
License: LGPLv3+
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.4
Description-Content-Type: text/markdown

# Smallest enclosing circle

`pip install smallestenclosingcircle`

```` python
import smallestenclosingcircle
center_x, center_y, radius = smallestenclosingcircle.make_circle(points)

# points must be iterable of points e.g.: 
# numpy array of shape (N, 2)
# list of tuples
# [(1, 2), (8, 9), (4, 5), (-6, -7), ... ]
#
# Note: if no points are input, returns None
````

Original source from: https://www.nayuki.io/page/smallest-enclosing-circle



