Creates a new point cloud filter based upon planar boundaries.
Namespace: Autodesk.Revit.DB.PointClouds
Assembly: RevitAPI (in RevitAPI.dll) Version: 22.0.0.0 (22.1.0.0)
Since:
2012
Syntax
Visual Basic |
---|
Public Shared Function CreateMultiPlaneFilter ( _
planes As IList(Of Plane), _
exactPlaneCount As Integer _
) As PointCloudFilter |
Visual C++ |
---|
public:
static PointCloudFilter^ CreateMultiPlaneFilter(
IList<Plane^>^ planes,
int exactPlaneCount
) |
Parameters
- planes
- Type: System.Collections.Generic..::..IList<(Of <(<'Plane>)>)>
All planes used for filtering; positive direction of the normal should point inside the volume of interest.
- exactPlaneCount
- Type: System..::..Int32
This value represents the number of planes (taken in order of their addition) which will be used
for exact filtering of individual points. Other planes in the filter will be used for faster,
but inexact filtering based on cells.
Return Value
Filter object; can be used to get representative set of cloud points passing through the filter.
Remarks
Exceptions
See Also