miaudele Posted August 10, 2011 Posted August 10, 2011 (edited) as title if I need to select one by one,it will be too slow.... Should this function be accompolished by LISP? But I am not familiar with LISP.... anyone could give me advice? THX~ Thank you for the advice! the situation is that I have many irregular lines distributed in disorder, and what I want to do is just lengthen these lines "3.5" Meters from the start point of each line. If I can do this way , then I can join the line to some points correctly in Arcmap. anyone have good idea? THX Edited August 10, 2011 by miaudele Quote
BlackBox Posted August 10, 2011 Posted August 10, 2011 Welcome to CADTutor! I understand that you're not wanting to select each line, one-at-a-time, however, while LISP can do this specific criteria is necessary. For example, which side of an object (Line, Pline, Arc?) should be lengthened... the start point, the end point, from center? Which object are you wanting to select... primary entities, nested entities? Not sure of the configuration of the entities, will the EXTEND command not work? More information is needed to code beyond this: (defun c:MLEN () (command "._lengthen" "total") (princ)) Quote
nestly Posted August 10, 2011 Posted August 10, 2011 Can you show an example of what you want to do. STRETCH, EXTEND, CHANGE or LENGTHEN (with the Fence option) may do what you're looking for. Quote
miaudele Posted August 10, 2011 Author Posted August 10, 2011 Thank you for the advice above! the situation is that I have many irregular lines distributed in disorder, and what I want to do is just lengthen these lines "3.5" Meters from the start point of each line. If I can do this way , then I can join the line to some points correctly in Arcmap. anyone have good idea? THX Quote
Tyke Posted August 10, 2011 Posted August 10, 2011 Are you wanting to extend both ends of the line or just one and if so is it always the start or the end of the line that needs to be extended? Quote
Murph_map Posted August 10, 2011 Posted August 10, 2011 Thank you for the advice above!the situation is that I have many irregular lines distributed in disorder, and what I want to do is just lengthen these lines "3.5" Meters from the start point of each line. If I can do this way , then I can join the line to some points correctly in Arcmap. anyone have good idea? THX I love it when people try to use two competitive softwares. Myself I would do that in Arcmap with a buffer of the points and then an overlay analysis unless of course you have AutoCAD MAP3D then I would do the same thing in that. Can you post a screen shot of the dwg or part of it? Quote
miaudele Posted August 10, 2011 Author Posted August 10, 2011 I love it when people try to use two competitive softwares. Myself I would do that in Arcmap with a buffer of the points and then an overlay analysis unless of course you have AutoCAD MAP3D then I would do the same thing in that. Can you post a screen shot of the dwg or part of it? as you can see , buffer or snap can't work, because Arcmap get the correct closest relationship , unless I extend the line a specified length Quote
Murph_map Posted August 10, 2011 Posted August 10, 2011 I see, the points are to close to another line for the buffer to work. I ran into this same thing years ago and eith a lisp to fix it or maunally doing each one was the only solution. Quote
nestly Posted August 10, 2011 Posted August 10, 2011 If your drawing isn't too dense, this may work LENGTHEN > DElta > Fence Quote
alanjt Posted August 10, 2011 Posted August 10, 2011 Here's one I posted a while back: http://www.cadtutor.net/forum/showthread.php?11722-Contribute-a-tip-become-famous&p=393664&viewfull=1#post393664 Quote
miaudele Posted August 11, 2011 Author Posted August 11, 2011 Thank you all! "Fence" is amazing! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.