PlanarSurface

Description

The Type utilized in the Bcc.CADOperation function to create a flat NURB surface from the closed input chain.

Parameters

In addition to the standard Bcc.CADOperation inputs, the following keys apply specifically to the Type="PlanarSurface"

  • ChainList - the list of entities to be used to define the boundary of the planar surface.  Please see the ChainList topic for more information.

Return

Returns a list of each entity ID for the entities that are created in the BobCAD database.

Example


-- Get the selected entities in the workspace

selectedIDs = Bcc.GetSelectedEntities(true)


-- Perform an extrude on the user selected chain

entIDList = Bcc.CADOperation({CmdName="My Planar Surface", Type="PlanarSurface", ChainList=selectedIDs})