+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 11
  1. #1
    Senior Member Rhayes's Avatar
    Using
    Architecture 2010
    Join Date
    May 2007
    Posts
    216

    Default Copy along a P-Line path

    Registered forum members do not see this ad.

    Is there a way to copy an object along a p-line path.???

  2. #2
    Forum Deity
    Using
    Civil 3D 2008
    Join Date
    Sep 2006
    Location
    Pittsburgh, PA, USA
    Posts
    3,581

    Default

    Make the object a block, then use the Measure (or Divide) command with the block option.

  3. #3
    Senior Member Rhayes's Avatar
    Using
    Architecture 2010
    Join Date
    May 2007
    Posts
    216

    Default

    Thanks. I did that. However I want to have my block spaced out exactly 1' apart.??? How do I do that.???

  4. #4
    Super Member rustysilo's Avatar
    Computer Details
    rustysilo's Computer Details
    Operating System:
    WinXP
    Discipline
    Civil
    rustysilo's Discipline Details
    Occupation
    Senior CAD Draftsman
    Discipline
    Civil
    Using
    Civil 3D 2008
    Join Date
    Jul 2007
    Location
    Jacksonville, FL - USA
    Posts
    1,458

    Default

    Use MEASURE
    "Constantly choosing the lesser of two evils is still choosing evil." ~ Jerry Garcia
    flickr |
    work | blog | creed
    rustysilo's tips & tutorials

  5. #5
    Senior Member Rhayes's Avatar
    Using
    Architecture 2010
    Join Date
    May 2007
    Posts
    216

    Default

    THAT'S IT...
    Thanks...

  6. #6
    Forum Newbie
    Using
    Map 3D 2008
    Join Date
    Oct 2008
    Posts
    6

    Default

    how i could copy object along p line with uneven distance?

  7. #7
    Forum Deity rkent's Avatar
    Computer Details
    rkent's Computer Details
    Operating System:
    WIN7 PRO 64bit
    Computer:
    Dell Precision T7500
    CPU:
    Xeon Dual Core E5503 2.0Ghz
    RAM:
    6GB DDR3 ECC SDRAM, 1333MHz, 6x1GB
    Graphics:
    nVidia Quadro 3800
    Primary Storage:
    300Gb, 10K rpm
    Monitor:
    Dell 24" FS (2x)
    Discipline
    Mechanical
    rkent's Discipline Details
    Occupation
    Facilities Design - Semi-conductor manufacturing
    Discipline
    Mechanical
    Details
    Designer: Process Piping, P&ID's, Machine Part Design, Planning / General Arrangement. Facilities Management. Drafting: Electrical, Controls, Architectural.
    Using
    Mechanical 2014
    Join Date
    Nov 2007
    Location
    Lat:35, Long:-106, Elev: 5164'
    Posts
    3,373

    Default

    Quote Originally Posted by kapsel View Post
    how i could copy object along p line with uneven distance?
    search on-line for PUT.LSP
    "You are entitled to your own opinion but you are not entitled to your own facts." Daniel Patrick Moynihan

  8. #8
    Super Member rustysilo's Avatar
    Computer Details
    rustysilo's Computer Details
    Operating System:
    WinXP
    Discipline
    Civil
    rustysilo's Discipline Details
    Occupation
    Senior CAD Draftsman
    Discipline
    Civil
    Using
    Civil 3D 2008
    Join Date
    Jul 2007
    Location
    Jacksonville, FL - USA
    Posts
    1,458

    Default

    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

  9. #9
    Forum Deity
    Using
    Civil 3D 2008
    Join Date
    Sep 2006
    Location
    Pittsburgh, PA, USA
    Posts
    3,581

    Default

    Here's one similar to the one Rusty referred to. You could modify it to insert blocks instead of points.
    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)
    )
    >>edit<<
    never mind, here is the PUT.lsp, seems to be what you want

  10. #10
    Forum Newbie
    Using
    Map 3D 2008
    Join Date
    Oct 2008
    Posts
    6

    Default

    Registered forum members do not see this ad.

    you guys awsome thx a lot.

Similar Threads

  1. ...auto draw a line path?
    By poly4life in forum AutoCAD 2D Drafting, Object Properties & Interface
    Replies: 2
    Last Post: 6th Mar 2008, 12:56 am
  2. Copy object along a path
    By P_c in forum AutoCAD Drawing Management & Output
    Replies: 4
    Last Post: 18th Oct 2007, 01:42 am
  3. copy paste moving problems with dimension line
    By ovidel20 in forum AutoCAD Drawing Management & Output
    Replies: 0
    Last Post: 5th Mar 2007, 08:40 pm
  4. BATCH CHANGE FULL PATH TO RELATIVE PATH
    By beth in forum AutoCAD General
    Replies: 3
    Last Post: 21st Jun 2006, 02:38 am
  5. copy path
    By nietsen in forum AutoCAD Drawing Management & Output
    Replies: 4
    Last Post: 7th Mar 2006, 04:07 pm

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts