Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any 3D geometry algorithms library in Java? [closed]

Tags:

java

geometry

3d

I need a library, that could perform some geometry operations with objects in 3D, like:

  • Find min distance between 2 triangles
  • Intersect two polygons
  • Intersect two wireframe objects and exctract their difference (hardest one).

Is there any such open-source library?

P.S. JTS is not an option, because it doesn't work with 3D :(

like image 322
Alex Turbin Avatar asked Jun 01 '11 16:06

Alex Turbin


1 Answers

Have a look at Java3D.

like image 109
Heisenbug Avatar answered Oct 19 '22 23:10

Heisenbug