Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import clr
  2. clr.AddReference('ProtoGeometry')
  3. from Autodesk.DesignScript.Geometry import *
  4.  
  5. p = IN[0]
  6.  
  7. def roun(p,d = 6):
  8.     return Point.ByCoordinates(round(p.X,d), round(p.Y,d), round(p.Z,d))
  9.  
  10. pp = []
  11. for i in(p):
  12.     pp.append(roun(i))
  13.  
  14. OUT = set(pp)