There is no problem with the Rhino model, but when rendering is performed, it crashes like this. help me please
- shape explosion
- Unidentified black line
There is no problem with the Rhino model, but when rendering is performed, it crashes like this. help me please
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:
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)