vote up 6 vote down star
5

I am looking for a good and well developed library for geometrical manipulations and evaluations in python, like:

  • evaluate the intersection between two lines in 2D and 3D (if present)
  • evaluate the point of intersection between a plane and a line, or the line of intersection between two planes
  • evaluate the minimum distance between a line and a point
  • find the orthonormal to a plane passing through a point
  • rotate, translate, mirror a set of points
  • find the dihedral angle defined by four points

I have a compendium book for all these operations, and I could implement it but unfortunately I have no time, so I would enjoy a library that does it. Most operations are useful for gaming purposes, so I am sure that some of these functionalities can be found in gaming libraries, but I would prefer not to include functionalities (such as graphics) I don't need.

Any suggestions ? Thanks

flag

77% accept rate

5 Answers

vote up 5 vote down check

Perhaps take a look at SymPy.

link|flag
It does not really satisfy my requirements, but it's indeed a cool project, so I accept your answer as an interesting suggestion also for the future (as SymPy has a geometry module, and a huge amount of developers) – Stefano Borini Jul 14 at 22:02
vote up 4 vote down

CGAL has Python bindings too.

link|flag
vote up 3 vote down

Shapely is a nice python wrapper around the popular GEOS library.

link|flag
1  
Seems to be very focused on GIS data handling, rather than pure "mathematical geometry" (so to speak) – Stefano Borini Jul 3 at 0:16
It certainly has been created for use by the GIS community, however it is deliberately ignorant of geographic projections, which makes it fine for use as a general-purpose euclidean geometry library. I use it heavily as such in a nascent computer game project, and it works fine. – Tartley Sep 14 at 20:47
Ah, caveat: I'm using Shapely in 2D, I cannot vouch for its abilities in 3D. – Tartley Sep 14 at 20:49
vote up 3 vote down

Take a look at NumPy to see if has what you need.

link|flag
Could some of the people upvoting this perhaps elucidate on whether or not numpy does contain anything useful, and if so, then what? – Tartley Sep 14 at 20:48
vote up 1 vote down

geometry-simple has classes Point Line Plane Movement in ~ 300 lines, using only numpy; take a look.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.