When we want to make a simple cube using Python in Grasshopper, we can simply use Addbox function in Rhinoscriptsyntax. Just like below. import rhinoscriptsyntax as rs #points should be coordinates in (x,y,z) form point_list = [p1,p2,p3,p4,p5,p6] rs.AddBox(point_list) The function takes 8 point lists which consist of the cube that we are going to make. However, important thing is that the point ..