MeshHasFaceNormals

Verifies a mesh object has face normals.

Syntax

rhinoscriptsyntax.MeshHasFaceNormals (object_id)

rhinoscript.mesh.MeshHasFaceNormals (object_id)

Parameters

object_id

Required.  String or Guid.  The object's identifier.

Returns

Boolean

True if successful, otherwise False.

Example

import rhinoscriptsyntax as rs

obj = rs.GetObject("Select a mesh", rs.filter.mesh)

if rs.MeshHasFaceNormals(obj):

    print "The mesh has face normal."

else:

    print "The mesh does not have face normals."

Also See

MeshFaceNormals