Sweep modifier to selection . . .
Hello,
I am trying to add sweep modifier with custom builtin shape, length and width, pivot position
single object work . . . ok!
but when selection two or more shapes or editable spline getting error
can any one solve
Thanks,
( if selection.count > 0 then ( for obj in selection where isKindOf obj Editable_Spline or isKindOf obj Shape do ( --modPanel.addModToSelection (sweep ()) ui:on addModifier obj (Sweep()) $.modifiers[#Sweep].CurrentBuiltInShape = 2 $.modifiers[#Sweep][#Bar_Section].length = 0.002 $.modifiers[#Sweep][#Bar_Section].width = 0.002 $.modifiers[#Sweep][#Bar_Section].cornerRadius = 0 $.modifiers[#Sweep].PivotAlignment = 4 ) ) )

Comments
Thanks you guys
yes both working good . . . .
thank you so much
Thanks,
Sketchup Master
...
Another approach
bga
Getting error . . .
getting error please check . .
Thanks,
Sketchup Master
nodes: undefined
it seems that you don't have any valid node selected, "nodes= getCurrentSelection()", shouldn't return undefined.
you can use this, it will send a message instead of crashing, i've also changed how nodes array was built, it now filters only shape objects and i removed shape filtering in the mapped function as it is no longer needed,earlier version was crashing if a non shape object was selected:
thanks Simon . .
Hello
will check and revert you
thanks
Thanks,
Sketchup Master
Much better Approach
Well done Barigazy :)
This approach is much faster when applied to a large amount of shapes.
Hi,