bitcold
bitcold

Reputation: 671

Are there some open source CAD libraries in Java?

I need a CAD modeling library. I've found such libraries, for example OPEN CASCADE, but they are not written in Java.To use those libraries I need a long time to learn a new programming language.

Now that I'm familiar with Java. Is there anyone who knows some open source CAD modeling libraries in Java?

Upvotes: 6

Views: 7772

Answers (2)

alkber
alkber

Reputation: 1436

May be this http://jcae.sourceforge.net/architecture.html could give you more info on how to achieve similar goals. If you have strong bias for java, it would try to use a "JNA" with OPEN CASCADE.

Upvotes: 2

CosminO
CosminO

Reputation: 5226

Ycad is a library of CAD functions in Java. Currently only DXF is supported for reading, viewing and writing. The DXF drawing may be rendered to a Graphics object for printing or imaging. http://sourceforge.net/projects/ycad/

Maybe this helps.

Upvotes: 5

Related Questions