Is this an internal python error -

Message: Could not convert [<Rhino.Geometry.Point3d object at 0x0000000000000035 [-26.0741147289728,88.5245484503914,10.8038204821891]>, <Rhino.Geometry.Point3d object at 0x0000000000000036 [-20.5729535181872,128.60443727183,10.8038204821891]>, <Rhino.Geometry.Point3d object at 0x0000000000000037 [25.0080965140367,127.81855709886,10.8038204821891]>, <Rhino.Geometry.Point3d object at 0x0000000000000038 [18.7210551302817,156.110243325758,10.8038204821891]>, <Rhino.Geometry.Point3d object at 0x0000000000000039 [87.0926301786176,86.1669079314833,10.8038204821891]>, <Rhino.Geometry.Point3d object at 0x000000000000003A [90.236150870495,130.176197617768,10.8038204821891]>, <Rhino.Geometry.Point3d object at 0x000000000000003B [137.388961248658,123.103276061044,10.8038204821891]>, <Rhino.Geometry.Point3d object at 0x000000000000003C [195.544094048392,83.8092674125751,10.8038204821891]>, <Rhino.Geometry.Point3d object at 0x000000000000003D [185.32765179979,155.324363152788,10.8038204821891]>] to a Point3d

Traceback:
line 375, in coerce3dpoint, "C:\Users\jeanpaul\AppData\Roaming\McNeel\Rhinoceros\5.0\Plug-ins\IronPython (814d908a-e25c-493d-97e9-ee3861957f49)\settings\lib\rhinoscript\utility.py"
line 1590, in SurfaceClosestPoint, "C:\Users\jeanpaul\AppData\Roaming\McNeel\Rhinoceros\5.0\Plug-ins\IronPython (814d908a-e25c-493d-97e9-ee3861957f49)\settings\lib\rhinoscript\surface.py"
line 6, in , “C:\Users\jeanpaul\AppData\Local\Temp\TempScript.py

Hmmm - need more info - can you post the relevant code? SurfaceClosestPoint will return a parameter, not a point 3d, in case that helps.

-Pascal

Looks like you think you have a point3d object that you are passing into a function, but in reality it’s some kind of list (which looks bizarre…) Can you put a breakpoint just before the error and look what your variables are?

–Mitch