Rendering Issues

There is no problem with the Rhino model, but when rendering is performed, it crashes like this. help me please


  1. shape explosion
  2. Unidentified black line

Hello, there is a problem with the latest Nvidia drivers, try disabling the option “rounded corner” in the texture settings.
Or you can try rolling back to old graphic driver 572.83
More info here : [Hot Issue] RTX 5000 Series with NVIDIA Driver 576.02

Hi @justins6

I apologize for the inconvenience. Please try @pierre.romani.1 suggestion by disabling “round corner”

If it does not work, then please try the following:

  • Check if your model is located near the origin in D5 Render. If it’s too far please move it near to 0,0,0 XYZ Values
  • If changing the values in D5 does not work then, please also check your model’s location in Rhino you may move it manually or do this process
  1. Open Rhino - Tools - Script - Edit
  2. Select the Icon - Select ​New Python 3
  3. Please copy this text and paste it. Then proceed to press the button.

importRhino
importRhino.Geometry
importscriptcontextassc
importrhinoscriptsyntaxasrs
if__name__==“main”:
doc=sc.doc
bb=doc.Objects.BoundingBox
max=Rhino.Geometry.Vector3d(bb.Max)
min=Rhino.Geometry.Vector3d(bb.Min)
diagonal=bb.Diagonal
print(“Boundingbox:\nMax:{}\nMin:{}\nCenter:{}\nDiagonal:{}”.format(
max,min,bb.Center,diagonal))
rs.MoveObjects(doc.Objects,-bb.Center)