How can I seperate the sections into two as the one of piloti floor and the other as a normal floor?

image
As you can see in the picture, I have to seperate those two sections as the red one will be a piling floor. Could you please tell me how i can seperate them?

image

For example, you should have two groups of the model. Let say red_group and blue_group (as shown in picture)

Then you can create a section plane using:
Entities #add_section_plane-instance_method
but add them to corresponding group entities.

e.g: (Assuming you have a groups and planes already defined)

sp_red = red_group.entities.add_section_plane(plane_red)
sp_blue = blue_group.entities.add_section_plane(plane_blue)
1 Like