SplitSurfaceByPlane
Separates the surface points being on one side of the input plane from the others.
Syntax
C++
C#
Python
def SplitSurfaceByPlane( inSurface: Surface, inPlane: Plane3D, outSurface1: Surface, outSurface2: Surface, /, *, inRoi: Region | None = None, inPreserveDimensions: bool = False ) -> None
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inSurface | Surface | Input surface | |
![]() |
inRoi | Region | None | None | Region of interest |
![]() |
inPlane | Plane3D | Plane used for splitting | |
![]() |
inPreserveDimensions | bool | False | Flag indicating whether the surface dimensions should be preserved or not |
![]() |
outSurface1 | Surface | Surface with points with positive signed distance to the input plane | |
![]() |
outSurface2 | Surface | Surface with points with negative signed distance to the input plane |
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.


