I need little help "TypeError:expected Point, got List[Object] "

Hi
I’m trying to make a python script. But, I have a problem about "TypeError:expected Point, got List[Object] ".

please help me to solve this error.

UVParameterAtPoint takes two inputs( surface and point) the ft you use is a list contains many points,
you have to make a loop over all points
sth like

for f in ft:
    uv.append(surface.UVParameterAtPoint(Surf1,f))

thank you.
It is very helpful your solution :smile: