Creating Polygon and irritating in different center points

I find the way creating polygon but i couldn’t repeat that in different center points. at firs i create plane then circle then polygon. when i write this"Plane=rg.Plane.WorldXY.Origin(Point)"
the massage is “Point3D is not callable” please let me know the correct one.

This doesn’t work:

Plane=rg.Plane.WorldXY.Origin(Point)

– plane.Origin is a property of the plane, not a method that you can input a point argument. You need to set the origin point after the plane instance is created. Try this instead:

plane=rg.Plane.WorldXY
plane.Origin=point

great., Thank you for your responding.