Make the object a block, then use the Measure (or Divide) command with the block option.
Registered forum members do not see this ad.
Is there a way to copy an object along a p-line path.???




Make the object a block, then use the Measure (or Divide) command with the block option.
Thanks. I did that. However I want to have my block spaced out exactly 1' apart.??? How do I do that.???
Use MEASURE
"Constantly choosing the lesser of two evils is still choosing evil." ~ Jerry Garcia
flickr | work | blog | creed
rustysilo's tips & tutorials
how i could copy object along p line with uneven distance?
Someone, I think lpseifert, posted one here some time ago called measureplinepts.lsp, but it might take some searching.
"Constantly choosing the lesser of two evils is still choosing evil." ~ Jerry Garcia
flickr | work | blog | creed
rustysilo's tips & tutorials




Here's one similar to the one Rusty referred to. You could modify it to insert blocks instead of points.
>>edit<<Code:;places point at specified station along a polyline, measured from start LPS 2008 (defun c:pop () (vl-load-com) (setq oldosnap (getvar "osmode")) (setvar "osmode" 0) (command "ucs" "w") (if (/= (getvar "pdmode") 3)(setvar "pdmode" 3)) (setq ob (entsel "Select curve: ")) (setq p2 (getreal "\n Specify Distance : ")) (setq obj (vlax-ename->vla-object (car ob))) (setq pt1 (vlax-curve-getPointAtDist Obj p2)) (command "Point" pt1) (command "ucs" "p") (setvar "osmode" oldosnap) (princ) )
never mind, here is the PUT.lsp, seems to be what you want
Registered forum members do not see this ad.
you guys awsome thx a lot.
Bookmarks