How can I create a selection of adjacent edges using Scripting?

Member, Moderator, Employee Posts: 481
100 Answers 250 Likes 100 Comments Second Anniversary
✭✭✭✭

How can I create a selection of adjacent edges using Scripting?

Comments

  • Member, Moderator, Employee Posts: 481
    100 Answers 250 Likes 100 Comments Second Anniversary
    ✭✭✭✭

    You need to define an initial selection using the Geometrical ID, for example let us start with an edge ID 180 and then collect all the adjacent selections and create a named selection:

    1. # create a new empty selection
    2. tempSel = ExtAPI.SelectionManager.CreateSelectionInfo(SelectionTypeEnum.GeometryEntities)
    3. # provide list of Ids of entities to select
    4. tempSel.Ids = [180]
    5.  
    6.  
    7. ExtAPI.SelectionManager.ClearSelection()
    8. ExtAPI.SelectionManager.AddSelection(tempSel)
    9.  
    10.  
    11. ExtAPI.Application.ScriptByName("jscript").ExecuteCommand("DS.Script.doGraphicsAdjacentSelect();")
    12. cs = ExtAPI.SelectionManager.CurrentSelection
    13.  
    14.  
    15. ns = Model.AddNamedSelection()
    16. ns.Location = cs
    17. ns.Name = "Loop_1"


Welcome!

It looks like you're new here. Sign in or register to get started.