black stripes

Hello, like others before I have get vertical black stripes (that get increase with zooming the image). how can we avoid thiss issue? Thanks

Hi @cs11

I apologize for the inconvenience. Can you please check if your model is far from the origin? You may try to modify the XYZ numbers and set it to 0,0,0

Hello, did you resolve this issue? I have it just the same and change the location didn´t work :frowning:

Hi @cs11

I just saw your reply to the other post. Can you send us your D5 File and 3d Model file?

This issue is caused by the model being too far away from its origin in Rhino. Aside from manually moving the model, you can solve this by running a script in Rhino. Please follow these steps:

  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)