CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] ARKANCE | CONTACT - CZ | SK | EN | DE
Over 1.096.000 registered users (EN+CZ). AutoCAD tips, Inventor tips, Revit tips. Try the new precise Engineering calculator and the updated Barcode generator. New AutoCAD 2026 commands and variables.
RSS channel - CAD tips RSS tips
RSS discussions

Discussion Discussion forum

?
CAD discussions, advices, exchange of experience

CAD Forum - Homepage CAD discussion forum - ask any CAD-related questions here, share your CAD knowledge on AutoCAD, Inventor, Revit and other Autodesk software with your peers from all over the world. To start a new topic, choose an appropriate forum.

Please abide by the rules of this forum.
This is a peer-to-peer forum. The forum doesn't replace the official direct technical support provided by ARKANCE for its customers.
How to post questions: register or login, go to the specific forum and click the NEW TOPIC button.
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Topic ClosedCopy Multiple Objects??

 Post Reply Post Reply
Author
Enterdevo View Drop Down
Newbie
Newbie


Joined: 05.May.2009
Status: Offline
Points: 2
Direct Link To This Post Topic: Copy Multiple Objects??
    Posted: 07.Jan.2010 at 21:56
I'm not asking about Copy Multiple!

Picture this: I'm recreating a hard copy of a drawing with many gridlines. They are all different lengths between.

Is there a way to copy the first gridline once, then type in the dimension between without having to press Copy, highlight the object again, Enter, type in the dimension. I'm thinking sort of like "Continuous Dimension" but with copy? Like a continuous copy....it starts again AFTER the line I just made... Array can work, but I have different dims between. Its just a pain in the ass!

I can do the math and just add the numbers between the gridlines, but when working in metric its hard!

I pretty much just want to press Enter then type in the dim and it continues to copy after the last gridline....

Does this make sense? lol
Back to Top
CarlB View Drop Down
Senior Member
Senior Member


Joined: 16.Oct.2009
Location: United States
Status: Offline
Points: 321
Direct Link To This Post Posted: 07.Jan.2010 at 23:22
You can copy in the "multiple" mode, and enter just a distance for the "copy to" point and it copys in direction of the cursor.  So if doing orthogonal copying/offsets, turn ortho mode on (F8). But you'd still need to add up distances since you enter distance from first object.  (Adding metric should be easier than imperial). :)
 
**EDIT**
 
OK you probably knew this since you said "not copy multiple".
So here's a short lisp to allow you to just enter offset distances in the copy multiple mode, and will be copy in direction of initial cursor. If not experienced with lisp, just copy/paste the below  to the command line, start with "cm".
 
(defun c:cm ()
(setq totdist 0)
(setq c_set (ssget))
(command "._copy" "p" "" "_M" pause)
(while (setq offset (getreal "offset: "))
  (setq totdist (+ totdist offset))
  (command totdist)
)
(command "")
)
 
 


Edited by CarlB - 07.Jan.2010 at 23:41
Back to Top

Related CAD tips:


 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down



This page was generated in 0,129 seconds.