Pick Edge Session

   3279   2   1
User Avatar
Member
216 posts
Joined: Oct. 2015
Offline
Hello Softies (and others) !

Do you know how to script a “Pick Edge Session” to request one or more edges selection from the user ?

Like this in softimage SDK doc :
http://docs.autodesk.com/SI/2015/ENU/Softimage-Developer-Help//index.html# [docs.autodesk.com]!/url=./si_cmds/PickElement.html

Thanks.
User Avatar
Staff
130 posts
Joined: Dec. 2010
Offline
here's a basic python snippet that should get you started…

import toolutils
scene_viewer = toolutils.sceneViewer()

scene_viewer.setPickGeometryType(hou.geometryType.Edges)
sel = scene_viewer.selectGeometry( prompt = “pick something” , use_existing_selection=False )
# sel.whatever; ie, sel contains whatever you selected
print sel.selectionStrings()
john mariella
Senior Technical Director
SideFX
www.sidefx.com
User Avatar
Member
216 posts
Joined: Oct. 2015
Offline
YESS !!
And that's a really good start !

Thank you.
  • Quick Links