Hi all,
I have one surface in the attached file and rhino3dm thinks that the surface is not planar. Is this a bug?
import rhino3dm
path = r"C:\Users\devan\Desktop\test.3dm"
file_3dm = rhino3dm.File3dm.Read(path)
for obj in file_3dm.Objects:
print(obj.Geometry.Surfaces[0].IsPlanar())
Output
False
test.3dm (42.7 KB)