Notifications
Clear all
[Closed] Collapse multiple splines to one…?
Jun 14, 2007 3:51 am
Hey all,
How do I collapse multiple editable splines to one editable spline using maxscript?
Thanks
3 Replies
Jun 14, 2007 3:51 am
Depending on exactly what you mean by “collapse” you should look at
[left]addAndWeld <to_shape> <from_shape> <weldthreshold_float>
[/left]
[left]Add the splines from one spline shape to the specified bezier shape. The weld threshold will weld the endpoints of the new splines onto endpoints of existing ones if they are within the distance specified.
[/left]
[left]
The process to add multiple splines together is a simple process of looping through the list, adding and welding them to the parent spline
[/left]
Jun 14, 2007 3:51 am
You’re welcome, glad to be of help. That one can be a little obscure