<?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: Dimension-continued and aligned? in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/12902176#M111867</link>
    <description>&lt;P&gt;thanks. its very helpful to me&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 17 Jul 2024 06:21:41 GMT</pubDate>
    <dc:creator>samvdoha</dc:creator>
    <dc:date>2024-07-17T06:21:41Z</dc:date>
    <item>
      <title>Dimension-continued and aligned?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9348441#M111859</link>
      <description>&lt;P&gt;How to continue dimension but aligned to other lines&amp;nbsp;which I want to measure ?&amp;nbsp;Is there something like combination dimaligned and dimcontinue? Please help,&amp;nbsp;thanks in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 14:03:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9348441#M111859</guid>
      <dc:creator>shonemml</dc:creator>
      <dc:date>2020-02-28T14:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension-continued and aligned?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9348480#M111860</link>
      <description>DIMCONTINUE simply "continues" the type of dimension you select.&lt;BR /&gt;If you need to change the dimension type to do something else it's best to create new DIMALIGNED that work best for your needs.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Feb 2020 14:18:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9348480#M111860</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2020-02-28T14:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension-continued and aligned?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9348481#M111861</link>
      <description>&lt;P&gt;Yes. Use the DIMCONTINUE command. It will start at the last dimension that was placed. Or you can use the SELECT option after you start the command.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 14:19:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9348481#M111861</guid>
      <dc:creator>BrianBenton</dc:creator>
      <dc:date>2020-02-28T14:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension-continued and aligned?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9348507#M111862</link>
      <description>&lt;P&gt;Thanks for the reply, but i have to measure many times spaces that are not linear and to shorten the time i thought there was an option like a combination of these two commands. Becouse&amp;nbsp;dimaligned is too long, need to click many time and&amp;nbsp;neither the continue help becouse it only works linear.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 14:30:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9348507#M111862</guid>
      <dc:creator>shonemml</dc:creator>
      <dc:date>2020-02-28T14:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension-continued and aligned?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9348907#M111863</link>
      <description>&lt;P&gt;Yes, DIMCONTINUE off an Aligned Dimension makes Rotated ones at the direction of the Aligned one, not more Aligned ones.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this [lightly tested]:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;(defun C:DIMALIcont (/ pt1 pt2)
  (command "_.dimaligned" pause (setq pt1 (getpoint (getvar 'lastpoint))) pause)
  (while (setq pt2 (getpoint pt1 "\nNext point in continued DIMALIGNED or &amp;lt;exit&amp;gt;: "))
    (command "_.dimaligned" "non" pt1 "non" pt2 pause)
    (setq pt1 pt2)
  ); while
  (princ)
); defun&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;It does require you to pick the dimension-line location for each.&amp;nbsp; Presumably [with a fair amount more code] it could be made to calculate that for you, the same distance from the definition points and on the same side, but I imagine you would get some clashes in some situations.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 16:50:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9348907#M111863</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2020-02-28T16:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension-continued and aligned?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9352122#M111864</link>
      <description>&lt;P&gt;Thanks for the reply, I made a lisp and applauded it but I'm not sure if it was necessary to enter some command based on the code? Nothing changed, but thanks anyway!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 09:02:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9352122#M111864</guid>
      <dc:creator>shonemml</dc:creator>
      <dc:date>2020-03-02T09:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension-continued and aligned?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9352626#M111865</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7425702"&gt;@shonemml&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;.... not sure if it was necessary to enter some command based on the code? ....&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The command name you enter for custom commands defined in this way is always the part immediately following&amp;nbsp; &lt;FONT color="#000000"&gt;&lt;STRONG&gt;(defun C:&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp; [in this case, the command name is &lt;FONT color="#000000"&gt;&lt;STRONG&gt;DIMALIcont&lt;/STRONG&gt;&lt;/FONT&gt;, which is &lt;EM&gt;not&lt;/EM&gt;&amp;nbsp; case-sensitive].&amp;nbsp; You can change that part to anything you would rather use for a command name instead, as long as it is not already a command name.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 13:36:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9352626#M111865</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2020-03-02T13:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension-continued and aligned?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9354521#M111866</link>
      <description>&lt;P&gt;You are awesome, thank you very much, you saved me a lot of trouble!&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 06:56:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/9354521#M111866</guid>
      <dc:creator>shonemml</dc:creator>
      <dc:date>2020-03-03T06:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension-continued and aligned?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/12902176#M111867</link>
      <description>&lt;P&gt;thanks. its very helpful to me&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2024 06:21:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dimension-continued-and-aligned/m-p/12902176#M111867</guid>
      <dc:creator>samvdoha</dc:creator>
      <dc:date>2024-07-17T06:21:41Z</dc:date>
    </item>
  </channel>
</rss>

