Anuncios

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

Kent1Cooper
en respuesta a: hardikyp

I imagine it would involve saving each Spline as a variable after it is drawn:

....

  {whatever draws a Spline}

  (setq spline1 (entlast))

  {whatever draws the next Spline}

  (setq spline2 (entlast))

....

 

Then you would have a distinct variable name for each Spline, which you could use in LOFT commands.

 

If you always need to Loft between adjacent Splines in the sequence of generating them, you could have one such variable:

....

  {whatever draws a Spline}

  (setq spline1 (entlast))

  {whatever draws the next Spline}

  (command "_.loft"  ... use the spline1 variable and (entlast) ...)

....

and repeat.

Kent Cooper, AIA