rs.AddPoint: Not all arguments converted during string formatting

I have a variable created that includes a set of point3d objects from the intersection of a surface and a set of curves. I want to us rs.AddPoint to place a point at a single point3d object location but I get the above error message. I have printed out the rs.CurveSurfaceIntersection results and confirmed that it is a list of point3d objects. See line 319 in the attached file. Thank you for any help you can give!testMRIcombine.py (10.9 KB)

After printing the CurveSurfaceIntersection output I found that you have to call a specific point within that output like this: rs.AddPoint(csintersect[1][1]) where csintersect is the variable name given to the CurveSurfaceIntersection command.

1 Like