Hi,
I am trying to use Python script in Plaxis to automate my work and I am stuck with extruding multiple surfaces to volumes:
here is my code:
Hello Kunyu
Could you try this one? It extrudes all polygons in your model.
for polygon in g_i.Surfaces[:]: g_i.extrude(polygon, 0, 0, 1)
Answer Verified By: Kunyu Yang
Hi Samet,
Thanks, the code works well.