Is the Distance() method in the rhinoscriptsyntax library broken in rhino 8?
This simple code gives me an error message in line 6 “Point3d object has no attribute Lengh”. It works fine in rhino 7.
import rhinoscriptsyntax as rs
point_1 = rs.GetObject("Select first point" , 1)
point_2 = rs.GetObject("Select second point" , 1)
distance = rs.Distance(point_1, point_2)
print(distance)