Identifies whether the facets can construct a valid topography surface.
Namespace: Autodesk.Revit.DB.Architecture
Assembly: RevitAPI (in RevitAPI.dll) Version: 22.0.0.0 (22.1.0.0)
Since:
2019.2
Syntax
C# |
---|
public static bool IsValidFaceSet(
IList<PolymeshFacet> facets,
IList<XYZ> points
) |
Visual Basic |
---|
Public Shared Function IsValidFaceSet ( _
facets As IList(Of PolymeshFacet), _
points As IList(Of XYZ) _
) As Boolean |
Visual C++ |
---|
public:
static bool IsValidFaceSet(
IList<PolymeshFacet^>^ facets,
IList<XYZ^>^ points
) |
Parameters
- facets
- Type: System.Collections.Generic..::..IList<(Of <(<'PolymeshFacet>)>)>
The facets to be checked.
- points
- Type: System.Collections.Generic..::..IList<(Of <(<'XYZ>)>)>
A collection of points.
Return Value
True if the facets are valid, otherwise false.
Exceptions
See Also