Hi Raven, it sounds like probably the model is made with polygon mesh data, not with CAD surface data.
.3dm files from Rhino can contain different kinds of objects in them, MOI will only read the CAD solids and surfaces and not polygon mesh objects.
.obj, .stl, and .fbx are all going to have polygon mesh objects in them. So something that looks like a sphere is made up of a whole bunch of little triangles and not a single sphere surface like it is in CAD data.
It is difficult to convert that kind of faceted data into structured CAD form. The ImportOBJ and STLImport scripts try to do it in a kind of hacky way by making a trimmed plane surface for every triangle in the polygon mesh. CAD programs are not designed to work on that kind of data, it becomes very heavy and unwieldy.
So it's likely that the model is made up of a pretty dense polygon mesh and that data is not suitable to be loaded into MOI. You would probably need to work with it in a polygon modeling program, not in MOI which does not do poly modeling.
That's why .obj and .stl import are not part of the built in MOI importers.
- Michael
|