Click or drag to resize

PointCloudSplit Method

Split a point cloud into two parts using a plane, or returns false if the pointcloud is not partitioned by plane.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntax
public bool Split(
	Plane plane,
	out PointCloud above,
	out PointCloud below
)

Parameters

plane
Type: Rhino.GeometryPlane
The splitting plane
above
Type: Rhino.GeometryPointCloud
The part of the point cloud that is above the plane
below
Type: Rhino.GeometryPointCloud
The part of the point cloud that is below the plane

Return Value

Type: Boolean
true on success, false if the plane does not partition the cloud, or on error.
See Also