Category Archives: Modifying

AutoLISP: Arc to Circle

Here’s one that someone asked me about a while ago and I just just it. Very simply, you select arc and this routine turns these arcs into circles keeping both the arc’s radius and the layer that the arcs were … Continue reading

Posted in AutoLISP, Modifying, TIPS | 1 Comment

AutoLISP: Array Rectanglular

Following the previous post concerning alternate array routines: here is one that is similar to the previous except that you can make rectangular arrays. Again, thanks to Lee-Mac. Here’s how: RECARR <enter> to start (RECtangular ARRay) Select object(s) to be … Continue reading

Posted in AutoLISP, Modifying, New in 2012, TIPS | Leave a comment

AutoLISP: Array Single Line (Vector)

So the new array tool is cool but it may be frustrating at the same time. Autodesk didn’t make the new array tool very intuitive. Here is a lisp routine that works in any UCS and is more intuitive than … Continue reading

Posted in AutoLISP, Modifying, New in 2012, TIPS | Leave a comment

Working in a Viewport

You may already know that if you double click inside a viewport that is on a layout tab you will be able to work in model space even though you are in paper space. This is known as working in … Continue reading

Posted in BASICS, Layout, Modifying, Paper Space, TIPS, Viewports | 10 Comments

AutoLISP: Arc Tangent to Line

I know that this blog has a lot of AutoLISP code on it. I will focus on regular drafting topics soon. It’s just that I have recently needed these LISP routines and thought that if they were handy for me, … Continue reading

Posted in AutoLISP, Modifying, TIPS, Uncategorized | 1 Comment

AutoLISP: ViewPort Lock & Unlock

Here is another short but sweet LISP routine by Lee-Mac found at the AUGI forums. This one is great because it does 4 functions. You can Lock or Unlock viewports byselecting them or you can Lock or Unlock all of … Continue reading

Posted in AutoLISP, Layout, Modifying, Viewports | 2 Comments

AutoLISP: Divide Polyline Segment

If youve ever tried the DIVIDE command on a Poly Line, You know the frustration that usually follows that adventure. Here is a great Routine that allows you to easily do this task. Note that places “Points” as the division … Continue reading

Posted in AutoLISP, Modifying, TIPS | 3 Comments

AutoLISP: Add Leader to MTEXT or DTEXT

Here is a quickie that lets you attach a leader to an existing MTEXT or DTEXT object. Here’s How: TL <enter> to start “Text Leader” Select Text object Specify start point (arrow) of leader Specify the angle of the leader … Continue reading

Posted in AutoLISP, Leaders, Modifying, Text | 7 Comments

AutoLISP: Connect Endpoints To Make PolyLine

I found this today and thought That I’d share it here because it is really cool. If you need to make a POLYLINE of objects that continuously touch at their endpoints, this ones for you. Here’s how: EJA <enter> to … Continue reading

Posted in AutoLISP, Modifying, TIPS | 8 Comments

AutoLISP: Dimension Extension Line Toggle

Simple and sweet. This one is one that I use all of the time when I have dimension extension lines that overlap objects in my drawing. Before i found this LISP, I used the properties palette to achieve this. But … Continue reading

Posted in AutoLISP, Dimensions, Modifying, TIPS | 3 Comments