Exporting FBX Rhino 3D to Blender 2023 version

preview_player
Показать описание
This video is about exporting .fbx files to Blender from Rhino 3d. It is also an overview of Blender's user interface.

Macro/Python Script for renaming:

! _-RunPythonScript (

import rhinoscriptsyntax as rs
def LayerNameToObject():
layers=rs.LayerNames()
for layer in layers:
objs=rs.ObjectsByLayer(layer)
rs.ObjectName(objs,layer)
LayerNameToObject()

)
Рекомендации по теме
Комментарии
Автор

They are Sub D objects right? Someone sent me a solid workds file in OBJ and STEP Format. I try to open it in blender but its still has tris even though I took it to rhino and exported as nurbs with a high polycount. Any idea how to open detailed CAD models without any issue?

peterlaverty