Hi all,
Code below is simple. In py2 it works well, but in Py3 it gets error messages:
“if raise_on_bad_input: raise TypeError(”%s can not be converted to a Plane"%plane)
TypeError: 0,0,0 can not be converted to a Plane"
import rhinoscriptsyntax as rs
plane = rs.CreatePlane(rs.CreatePoint(0,0,0), rs.CreateVector(1,0,0), rs.CreateVector(0,1,0))
print(plane)