On 22/12/2015 at 02:45, xxxxxxxx wrote:
Hi, I want to store a Pointsselection and later restore that Selection on another Identical Object.
I tried this...but with no luck
points = obj.GetPointS()
count = NewObj.GetPointCount()
newPoints = NewObj.GetPointS()
newPoints.DeselectAll()
for i in xrange(count) :
if points.IsSelected(i) :
newPoints.Select(i)