i can select my geometry, do S+2 and select the points / vertex of the geometry.
def get_points():
import toolutils
selection = toolutils
selection = selection.sceneViewer().selectGeometry()
selection = selection.selectionStrings()
#selection is a tupple
print selection
print type(selection)
and returns a tupple where the first index is a tupple with numbers and the second index is empty that looks like this
>>>('21 32 36 40-41 ‘,)
>>><type ’tuple'>
is there a way to get the points as a class and then i can get the position of them OR???
i have to loop the point nomber agains the points in the geometry and if it match then do something with that?
is there a more elgant way to do that?
