<?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: Foly line in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/foly-line/m-p/10346940#M204884</link>
    <description>&lt;P&gt;Is there a lisp routine that can do this?&lt;/P&gt;</description>
    <pubDate>Fri, 28 May 2021 08:53:03 GMT</pubDate>
    <dc:creator>jostroopers</dc:creator>
    <dc:date>2021-05-28T08:53:03Z</dc:date>
    <item>
      <title>Foly line</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/foly-line/m-p/7502937#M204882</link>
      <description>&lt;P&gt;Is it possible to make the line as in the attachment with Multi line tool?&lt;/P&gt;
&lt;P&gt;Or is there a other way?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 20:06:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/foly-line/m-p/7502937#M204882</guid>
      <dc:creator>jostroopers</dc:creator>
      <dc:date>2017-10-30T20:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Foly line</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/foly-line/m-p/7502945#M204883</link>
      <description>&lt;P&gt;if using C3D, and this is supposed to be a pipe, then C3D styles can handle that fairly well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if just using as vanilla acad to get a line, then I would lay in a centerline using PLINE where needed, offset both sides, and then&amp;nbsp; Pedit the width if the original ot twice the offset distance. you end up with three objects,&amp;nbsp; instead of a single line.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 20:10:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/foly-line/m-p/7502945#M204883</guid>
      <dc:creator>jggerth</dc:creator>
      <dc:date>2017-10-30T20:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Foly line</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/foly-line/m-p/10346940#M204884</link>
      <description>&lt;P&gt;Is there a lisp routine that can do this?&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 08:53:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/foly-line/m-p/10346940#M204884</guid>
      <dc:creator>jostroopers</dc:creator>
      <dc:date>2021-05-28T08:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: Foly line</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/foly-line/m-p/10347101#M204885</link>
      <description>&lt;P&gt;&lt;SPAN&gt;"Youre drawings are as good as the symbols that compleet them....."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Actually, symbols do not make a good drawing. They can help but they are far from THE determining factor. I've always said that symbols don't matter. Just have a look at the variety of ways the same design can be presented.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Grammar and spelling are much more important.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 09:46:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/foly-line/m-p/10347101#M204885</guid>
      <dc:creator>RobDraw</dc:creator>
      <dc:date>2021-05-28T09:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Foly line</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/foly-line/m-p/10347343#M204886</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/386826"&gt;@jostroopers&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Is there a lisp routine that can do this?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;In simplest terms, try this.&amp;nbsp; It assumes you start with a Polyline that has the desired non-continuous linetype and linetype scale.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun C:PPWE ; = Polyline Path Width with Edges
  (/ path pathobj wid)
  (setq
    path (car (entsel "\nPolyline path object to give width and edges: "))
    pathobj (vlax-ename-&amp;gt;vla-object path)
    wid (getdist "\nWidth: ")
  ); setq
  (vla-put-constantwidth pathobj 0.0)
  (vla-offset pathobj (/ wid 2))
  (vla-put-linetype (vlax-ename-&amp;gt;vla-object (entlast)) "Continuous")
  (vla-offset pathobj (- (/ wid 2)))
  (vla-put-linetype (vlax-ename-&amp;gt;vla-object (entlast)) "Continuous")
  (vla-put-constantwidth pathobj wid)
  (princ)
); defun&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is what it does with something of HIDDEN linetype:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kent1Cooper_0-1622201980126.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/924220i3501C4765EA09FDC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Kent1Cooper_0-1622201980126.png" alt="Kent1Cooper_0-1622201980126.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;For your original drawing's configuration, you will need a linetype with dashes and gaps of &lt;EM&gt;equal length&lt;/EM&gt;.&amp;nbsp; There's one called EVENDASH that I'm not sure comes with plain AutoCAD but I think may have come with Architectural Desktop years ago -- if you don't have that, it's easy to make one.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It can be given all the usual enhancements -- verify that you selected a Polyline, and that it's not currently of Continuous linetype, remember your Width value to offer as default, *error* handling, Undo begin/end wrapping, etc.&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 11:44:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/foly-line/m-p/10347343#M204886</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-05-28T11:44:51Z</dc:date>
    </item>
  </channel>
</rss>

