up vote 24 down vote favorite
16
share [g+] share [fb]

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

link|improve this question

74% accept rate
feedback

6 Answers

up vote 9 down vote accepted

Perhaps take a look at SymPy.

link|improve this answer
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 '09 at 22:02
feedback

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

link|improve this answer
1  
Seems to be very focused on GIS data handling, rather than pure "mathematical geometry" (so to speak) – Stefano Borini Jul 3 '09 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. – Jonathan Hartley Sep 14 '09 at 20:47
Ah, caveat: I'm using Shapely in 2D, I cannot vouch for its abilities in 3D. – Jonathan Hartley Sep 14 '09 at 20:49
feedback

CGAL has Python bindings too.

link|improve this answer
1  
The last release was 2009, and they appear to be incomplete. Can anyone say that they've used them recently, and that they can do the things asked in the question using the bindings? – BenjaminGolder Jun 23 '11 at 9:04
I must admit: I don't know. – Agnel Kurian Sep 16 '11 at 18:13
feedback

I found pyeuclid to be a great simple general purpose euclidean math package. Though the library may not contain exactly the problems that you mentioned, its infrastructure is good enough to make it easy to write these on your own.

link|improve this answer
feedback

I really want a good answer to this question, and the ones above left me dissatisfied. However, I just came across pythonocc which looks great, apart from lacking good docs and still having some trouble with installation (not yet pypi compatible). The last update was 4 days ago (June 19th, 2011). It wraps OpenCascade which has a ton of geometry and modeling functionality. From the pythonocc website:

pythonOCC is a 3D CAD/CAE/PLM development framework for the Python programming language. It provides features such as advanced topological and geometrical operations, data exchange (STEP, IGES, STL import/export), 2D and 3D meshing, rigid body simulation, parametric modeling.

[EDIT: I've now downloaded pythonocc and began working through some of the examples]

I believe it can perform all of the tasks mentioned, but I found it to be unintuitive to use. It is created almost entirely from SWIG wrappers, and as a result, introspection of the commands becomes difficult.

link|improve this answer
In my opinion, it makes too much.... should we start one ? I will need many geometry operations in my raytracer soon, and it probably makes sense to create a separate github for it. I already have some code, we dont' start from scratch, but it is going to be easy to redesign if we find out it's not good enough. – Stefano Borini Jun 23 '11 at 15:53
@Stefano Borini: sure! I'd be happy to help however I can, but I'm nowhere near your level of qualification. – BenjaminGolder Jun 26 '11 at 18:23
I'm similarly disappointed with what's available. For simple stuff, I've done my own code (e.g. in Adolphus), but tonight, for example, I need polyhedron-polyhedron intersection and it's just too many steps from what I have to be sane. In any case, if this goes forward, count me in. – ezod Sep 1 '11 at 1:09
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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