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
Hi @cs11
I just saw your reply to the other post. Can you send us your D5 File and 3d Model file?
- You may send it to support@d5techs.com and have it titled ‘Clov Forum-Black Stripes’. Please zip the files.
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:
- Open Rhino - Tools - Script - Edit
- Select the Icon - Select New Python 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)