Metadata-Version: 2.1
Name: eudist
Version: 0.1.5
Summary: Calculate distances between simple shapes such as polygons.
Home-page: https://github.com/dschwoerer/eudist
Author: David Bold
Author-email: dave@ipp.mpg.de
License: GPL
Project-URL: Bug Tracker, https://github.com/dschwoerer/eudist/issues
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Scientific/Engineering :: Visualization
Description-Content-Type: text/markdown
License-File: COPYING
Requires-Dist: numpy
Provides-Extra: docs
Requires-Dist: sphinx (>=1.4) ; extra == 'docs'

# eudist

eudist is a library to caculate EUclidean DISTances.

eudist can calculate for example the distance between a point and a
plane in 3D.  A version with the signed distance is also available,
which can be used to check whether two points are on the same side of
the plane.

It can also be used to check if a point is within a polygon, using the
`winding_number` calculation.  It can also for 2D meshes calculate in
which cell a point is.
