<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Automatic Dimension in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9573254#M105896</link>
    <description>&lt;P&gt;Dont double post it makes it confusing that you will get different people trying to solve the same question.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jun 2020 01:37:04 GMT</pubDate>
    <dc:creator>Sea-Haven</dc:creator>
    <dc:date>2020-06-11T01:37:04Z</dc:date>
    <item>
      <title>Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942379#M105878</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I used to have a LISP routine that would place dimension of the height and width of a rectangle, just by selecting the rectangle, or poly line.&lt;/P&gt;&lt;P&gt;I do not have that LISP anymore, and have looked everywhere on the internet for something similar, but cannot find exactly what I used to have. I know alittle about editing or modifying a LISP routine, but don't feel comfortable in editing the ones I have found, that worked somewhat for what I was looking for.&lt;/P&gt;&lt;P&gt;Does anyone know where I could find such a routine, to simply place dimensions for the height and width of any polyline rectangle? Ive attached drawing of what I am looking for. Thanks in advance&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 17:52:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942379#M105878</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-18T17:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942428#M105879</link>
      <description>&lt;P&gt;You can use &lt;STRONG&gt;DimPoly.lsp&lt;/STRONG&gt;, available &lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/pline-dimensioning/m-p/6334977/highlight/true#M341427" target="_blank"&gt;&amp;gt;&amp;gt;here&amp;lt;&amp;lt;&lt;/A&gt;. &amp;nbsp;It could be adjusted easily enough to do only two sides of a rectangle, if it otherwise does what you want. &amp;nbsp;See other Posts on that thread for certain possibilities, and other code. &amp;nbsp;Also consider such things as using a Dimension Style with extension and dimension lines suppressed if all you want to see is the distance text part, etc.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 18:12:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942428#M105879</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2018-04-18T18:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942542#M105880</link>
      <description>&lt;P&gt;Thanks for the quick reply Kent. I liked the LISP you reference to ......it does however, put dimensions on all sides of the rectangle. How could I modify the LISP to remove those two sides, when I only want just the height and width?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 18:39:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942542#M105880</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-18T18:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942586#M105881</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;.... How could I modify the LISP to remove those two sides, when I only want just the height and width?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you don't care &lt;EM&gt;which&lt;/EM&gt;&amp;nbsp; two consecutive edges get dimensioned, and you plan to use it only on rectangles, I think you could just change this line:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; (repeat (setq inc &lt;FONT color="#CC99FF"&gt;(fix (vlax-curve-getEndParam pl))&lt;/FONT&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; (repeat (setq inc &lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/FONT&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It could also be simplified in a lot of other ways, particularly eliminating its accounting for arc segments, coincident vertices, open-vs-closed Polylines, and so on, but those elements won't hurt if left in, even if they're not used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the &lt;EM&gt;particular edges&lt;/EM&gt;&amp;nbsp; dimensioned matter, it could probably be made to figure out where it is, and only do whichever you want [for example, the left and bottom edges]. &amp;nbsp;But that raises the question of whether the rectangles are always orthogonally oriented. &amp;nbsp;If not, there would need to be some criterion developed for which two edges to do, when a rectangle is at some oddball angle.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 19:01:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942586#M105881</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2018-04-18T19:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942730#M105882</link>
      <description>&lt;P&gt;That worked great!&lt;/P&gt;&lt;P&gt;I noticed when I the dimension was placed, it was placed very close to the rectangle (3/16"), almost overlapping it. How could I go about modifying the LISP routine to make that distance further?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 19:52:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942730#M105882</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-18T19:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942821#M105883</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;... it was placed very close to the rectangle (3/16"), almost overlapping it. How could I go about modifying the LISP routine to make that distance further?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That's determined as a proportion of the text height, by this line:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(* styht 1.5); distance&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so if you change that 1.5 to something larger, they'll be farther away.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 20:24:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942821#M105883</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2018-04-18T20:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942858#M105884</link>
      <description>&lt;P&gt;Thanks so much for all your help!&lt;/P&gt;&lt;P&gt;I plan on educating myself in writing LISP routines this year. They are such a great thing for AutoCAD&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 20:39:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/7942858#M105884</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-18T20:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/8312705#M105885</link>
      <description>&lt;P&gt;how could I alter the Code so I could use this for general Squares and rectangles and still use DPO/DPI for tougher shapes?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Oct 2018 12:27:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/8312705#M105885</guid>
      <dc:creator>Kyle.Pederson</dc:creator>
      <dc:date>2018-10-04T12:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/8584681#M105886</link>
      <description>&lt;P&gt;you&amp;nbsp; can try AutoDim plugin&lt;/P&gt;</description>
      <pubDate>Sat, 09 Feb 2019 12:59:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/8584681#M105886</guid>
      <dc:creator>jwe03</dc:creator>
      <dc:date>2019-02-09T12:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/8607332#M105887</link>
      <description>&lt;P&gt;Hi Kentcooper,&lt;/P&gt;
&lt;P&gt;Your autolisp very useful, but if i only want to use your autolisp for only dimension line and no need dimension aligned, how i can modify it ? Thank you so much&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled.png" style="width: 744px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/605016i3B8032B98D5BD044/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2019 03:05:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/8607332#M105887</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-20T03:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/8608249#M105888</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;.... if i only want to use your autolisp for only dimension line and no need dimension aligned, how i can modify it ? ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's actually quite a bit more complicated than you might think, but probably possible -- I'll have to think about it.&amp;nbsp; In the meantime, the &lt;FONT color="#000000"&gt;&lt;STRONG&gt;QDIM&lt;/STRONG&gt;&lt;/FONT&gt; command can do much of what you want, though you'll need to run it four times on each Polyline, and it will make more Dimensions than in your image examples, because [for example] its left-side Dimension string will pick up vertices along the right side.&amp;nbsp; But if you can [even temporarily, and re-join later] Explode the Polylines into Lines, you could get &lt;STRONG&gt;&lt;FONT color="#000000"&gt;QDIM&lt;/FONT&gt;&lt;/STRONG&gt; to do exactly what you want.&amp;nbsp; And it has the advantage of not having extension lines overlapping orthogonal edges.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2019 12:34:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/8608249#M105888</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2019-02-20T12:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/8609796#M105889</link>
      <description>&lt;P&gt;Looking at the image again, I have some questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have a second overall Dimension on the right end of the bottom right figure, but no other overalls along sides with more than one Dimension.&amp;nbsp; I assume that's because there's no &lt;EM&gt;single&lt;/EM&gt;&amp;nbsp; edge on&amp;nbsp;either end of the figure to Dimension that overall height along.&amp;nbsp; It would be a serious challenge to figure out how to instruct a routine to determine that.&amp;nbsp; Is the overall Dimension something you would want the routine to draw, rather than putting it in yourself where needed?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many of your strings of multiple Dimensions along&amp;nbsp;the same&amp;nbsp;side are continuous, but some are stepped.&amp;nbsp; Is that a matter of how crowded the text is&amp;nbsp;between the extension lines on the ones that are stepped?&amp;nbsp; Again, telling a routine how to figure that out, and what to do about it, would be difficult.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would you ever have a &lt;EM&gt;concave&lt;/EM&gt;&amp;nbsp; situation such as this?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Concave.PNG" style="width: 177px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/605445i4FF7E479BFEBECC0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Concave.PNG" alt="Concave.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;How should that be handled?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not really a routine's problem, but a question of how you draw and how you define your Dimension Style:&amp;nbsp; I notice that the Polylines are not drawn with precision and the Dimensions are rounded, because [upper-right figure] 377 + 99 does not equal 475.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2019 21:44:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/8609796#M105889</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2019-02-20T21:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/8610217#M105890</link>
      <description>&lt;P&gt;Hi Ken1Cooper,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;Thanks for your advice, actually your autolisp is near my requirement after i surveyed many others. Unfortunaly, I do not know as well as designing a autolisp, only seeking and use. So that when i found your autolisp, i am very happy but it is so useful and more than what i need, though i only need dimension as width and length. Again, great thank to your support.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 02:30:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/8610217#M105890</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-21T02:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9571680#M105891</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a question about a way to automatically dimension polyline with coordinate dimensions. Is that possible? If the same dimensions were shown on the right / left and top / bottom, this is not a problem for me, I can simply power-delete some dimensions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;An sample :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sketch.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/782090i91FBBAFF6C6319E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Sketch.PNG" alt="Sketch.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Many thanks in advance&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 11:48:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9571680#M105891</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-10T11:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9572033#M105892</link>
      <description>&lt;P&gt;The values would have to be overwritten.&lt;/P&gt;
&lt;P&gt;Do you have dim styles set for both directions?&lt;/P&gt;
&lt;P&gt;What is the original shape made from, lines or pline?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Post that image as dwg!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 14:09:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9572033#M105892</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2020-06-10T14:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9572164#M105893</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here another example, but the same story&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I only use free closed polyline - not just orthogonal version, like e.g. base plate.&lt;/P&gt;&lt;P&gt;My dim style are given - works automatically.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 14:50:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9572164#M105893</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-10T14:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9572432#M105894</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Dear&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a question about a way to automatically dimension polyline with coordinate dimensions. ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;[I defer to your other specific-to-this-question thread.&amp;nbsp; Not that I have a solution there, but anyway....&amp;nbsp; And just to be nit-picky, they're called Ordinate (not &lt;EM&gt;Co&lt;/EM&gt;ordinate) Dimensions.]&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 16:26:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9572432#M105894</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2020-06-10T16:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9572463#M105895</link>
      <description>&lt;P&gt;you learn something new every day&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2020 16:35:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9572463#M105895</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-10T16:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9573254#M105896</link>
      <description>&lt;P&gt;Dont double post it makes it confusing that you will get different people trying to solve the same question.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2020 01:37:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9573254#M105896</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-06-11T01:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Dimension</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9573729#M105897</link>
      <description>&lt;P&gt;I know, I'm sorry, it wasn't my intention, it kind of went wrong, I solve it in a separate thread&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2020 08:44:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/automatic-dimension/m-p/9573729#M105897</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-11T08:44:44Z</dc:date>
    </item>
  </channel>
</rss>

