MultisidedPatch

Description

The Type utilized in the Bcc.CADOperation function to create a NURB surface utilizing any number of input chains.

Parameters

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

  • ChainList - a ChainList containing any number of chains to define the boundary of the surface.

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 3Edge Surface", Type="MultisidedPatch", ChainList=selectedIDs})