IsSurfaceTrimmed

Verifies a surface object has been trimmed.

Syntax

rhinoscriptsyntax.IsSurfaceTrimmed (surface_id)

rhinoscript.surface.IsSurfaceTrimmed (surface_id)

Parameters

surface_id

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

Returns

Boolean

True if successful, otherwise False.

None

On error.

Example

import rhinoscriptsyntax as rs

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

if rs.IsSurfaceTrimmed(obj):

    print "The surface is trimmed."

else:

    print "The surface is not trimmed."

Also See

IsSurface

IsSurfaceClosed

IsSurfacePeroidic

IsSurfacePlanar

IsSurfaceSingular