BrepIsValidGeometry Method |
Rhino 5 for Windows
Expert user function that tests the brep to see if its geometry information is valid.
The value of brep.IsValidTopology() must be true before brep.IsValidGeometry() can be
safely called.
Namespace: Rhino.GeometryAssembly: RhinoCommon (in RhinoCommon.dll) Version: 5.1.30000.17 (5.13.60913.21340)
Syntaxpublic bool IsValidGeometry(
out string log
)
Public Function IsValidGeometry (
<OutAttribute> ByRef log As String
) As Boolean
Parameters
- log
- Type: SystemString
If the brep geometry is not valid, then a brief description of the problem
in English is assigned to this out parameter. The information is suitable for
low-level debugging purposes by programmers and is not intended to be
useful as a high level user interface tool. Otherwise, Empty.
Return Value
Type:
BooleanA value that indicates whether the geometry is valid.
See Also