IsBrepManifold - PYTHON 不支持

Verifies a polysurface object is manifold.A polysurface for which every edge is shared by at most two faces is called a manifold.If a polysurface has at least one edge that is shared by more than two faces, then that polysurface is called non-manifold.

语法

Rhino.IsBrepManifold (strObject)

参数

strObject

Required.字符串。The object's identifier.

返回值

Boolean

True if successful, otherwise False.

Null

On error.

示例

Const rhPolysrf = 16

Dim strObject

strObject = Rhino.GetObject("Select a polysurface", rhPolysrf)

If Rhino.IsBrepManifold(strObject) Then

Rhino.Print "The polysurface is manifold."

Else

Rhino.Print "The polysurface is non-manifold."

End If

同见

IsBrep