<?xml version="1.0" encoding="windows-1250" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>CAD F&#243;rum : Vytvoření složitější  polyline</title>
  <link>https://www.cadforum.cz/forum/</link>
  <description><![CDATA[Toto je XML obsahový kanál serveru; CAD F&#243;rum : AutoCAD : Vytvoření složitější  polyline]]></description>
  <pubDate>Thu, 04 Jun 2026 19:56:13 +0000</pubDate>
  <lastBuildDate>Fri, 12 Jan 2018 13:08:19 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.cadforum.cz/forum/RSS_post_feed.asp?TID=25507</WebWizForums:feedURL>
  <image>
   <title><![CDATA[CAD F&#243;rum]]></title>
   <url>https://www.cadforum.cz/forum/forum_images/web_wiz_forums.png</url>
   <link>https://www.cadforum.cz/forum/</link>
  </image>
  <item>
   <title><![CDATA[Vytvoření složitější  polyline : Mockr&#225;t V&#225;m v&#353;em d&#283;kuji, jsem...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110088&amp;title=vytvoreni-slozitejsi-polyline#110088</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=57656">Fuskic</a><br /><strong>Předmět:</strong> 25507<br /><strong>Zasláno:</strong> 12.led.2018 v 13:08<br /><br />Mockrát Vám všem děkuji, jsem z toho nadšený a ušetří to mnoho času.&nbsp;<div>Díky pánové!&nbsp;</div>]]>
   </description>
   <pubDate>Fri, 12 Jan 2018 13:08:19 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110088&amp;title=vytvoreni-slozitejsi-polyline#110088</guid>
  </item> 
  <item>
   <title><![CDATA[Vytvoření složitější  polyline :   Vladim&#237;r Michl napsal(a):Hezk&#233;,...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110056&amp;title=vytvoreni-slozitejsi-polyline#110056</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=1045">johny</a><br /><strong>Předmět:</strong> 25507<br /><strong>Zasláno:</strong> 10.led.2018 v 11:59<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Původně odeslal(a) Vladimír Michl" alt="Původně odeslal(a) Vladimír Michl" style="vertical-align: text-bottom;" /> <strong>Vladimír Michl napsal(a):</strong><br /><br />Hezké, pro CZ verzi jen "Dashed" -&gt; "Čárkovaná".<br>Plus bude potřeba doplnit ty bloky na začátku a na konci....<br></td></tr></table><div><br></div><div>Díky -- nemyslel jsem že to úplně stojí za to --&nbsp; ale vypadá to pěkně když člověk nakreslí tu polyline v libovolném tvaru a ono se to vzápětí celé prokreslí.</div><div><br></div><div>Bloky musí být buď ve výkrese nebo uložené ve vyhledávacích cestách.</div><div><br></div><div><div><br></div><div><font face="Courier New, Courier, mono">(vl-load-com)</font></div><div><font face="Courier New, Courier, mono"><br></font></div><div><font face="Courier New, Courier, mono">(defun c:SložitějšíKřivka ( / pnt enl ent ss i)</font></div><div><font face="Courier New, Courier, mono"><br></font></div><div><font face="Courier New, Courier, mono">&nbsp; (if (setq pnt (getpoint "\nPrvní bod nebo &lt;vyber&gt;: "))</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; (progn</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (setq enl (entlast))</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (command-s "_.PLINE" "_none" pnt)</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (if (not (equal enl (setq enl (entlast))))</font></div><div><font face="Courier New, Courier, mono"><span style="white-space:pre">	</span>(setq ss (ssadd enl))))</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; (progn</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (princ "\nVyber křivky, ")</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (setq ss (ssget "_:L" '((0 . "LWPOLYLINE"))))))</font></div><div><font face="Courier New, Courier, mono"><br></font></div><div><font face="Courier New, Courier, mono">&nbsp; (if ss</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; (repeat (setq i (sslength ss))</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (setq ent (ssname ss (setq i (1- i))))</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (vla-offset (vlax-ename-&gt;vla-object ent) 0.25)</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (command "_.CHPROP" "_Last" "" "_Color" 30 ""</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_.PEDIT"&nbsp; "_Last" "_Width" 0.25 "")</font></div><div><font face="Courier New, Courier, mono"><br></font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (vla-offset (vlax-ename-&gt;vla-object ent) -0.25)</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (command "_.CHPROP" "_Last" "" "_Color" 30 ""</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_.PEDIT"&nbsp; "_Last" "_Width" 0.25 "")</font></div><div><font face="Courier New, Courier, mono"><br></font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (command "_.CHPROP" ent "" "_Color" 41 ""</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_.PEDIT"&nbsp; ent "_Width" 0.25 "")</font></div><div><font face="Courier New, Courier, mono"><br></font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (command "_.COPY" ent "" "_Displacement" "_none" '(0 0 0)</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_.CHPROP" "_Last" "" "_Color" 1 ""</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_.CHPROP" "_Last" "" "_LType" "Dashed" ""</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_.PEDIT"&nbsp; "_Last" "_Width" 0.08 "")</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp;&nbsp;</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (command "._INSERT" "ArrowBlock"</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_Scale" 1</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_Rotate" "_none" (trans (vlax-curve-getFirstDeriv ent (vlax-curve-getParamAtPoint ent (vlax-curve-getStartPoint ent))) 0 1) "_none" (trans '(0 0 0) 0 1)&nbsp;</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_none" (trans (vlax-curve-getStartPoint ent) 0 1))</font></div><div><font face="Courier New, Courier, mono"><br></font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; (command "._INSERT" "ArrowBlock"</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_Scale" 1</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_Rotate" "_none" (trans '(0 0 0) 0 1) "_none" (trans (vlax-curve-getFirstDeriv ent (vlax-curve-getParamAtPoint ent (vlax-curve-getEndPoint ent))) 0 1)</font></div><div><font face="Courier New, Courier, mono">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_none" (trans (vlax-curve-getEndPoint ent) 0 1))))</font></div><div><font face="Courier New, Courier, mono">&nbsp; (princ)</font></div><div><font face="Courier New, Courier, mono">)</font></div></div>]]>
   </description>
   <pubDate>Wed, 10 Jan 2018 11:59:32 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110056&amp;title=vytvoreni-slozitejsi-polyline#110056</guid>
  </item> 
  <item>
   <title><![CDATA[Vytvoření složitější  polyline :  Tak nakonec to p&#345;eci jen st&#225;lo...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110055&amp;title=vytvoreni-slozitejsi-polyline#110055</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=9">Vladimír Michl</a><br /><strong>Předmět:</strong> 25507<br /><strong>Zasláno:</strong> 10.led.2018 v 11:05<br /><br />Tak nakonec to přeci jen stálo za zobecnění. Freeware utilita "<strong>toMulti</strong>" (ke stažení viz Download) převede vybrané křivky na multi-čáry (s případnými koncovými bloky) dle předefinované sady definic v tabulce v textovém&nbsp;souboru <em>toMulti.tab</em> (kdekoliv v cestě). Viz ukázkové definice v .tab souboru.<div></div><div><a href="http://www.cadforum.cz/cadforum/prevod-krivky-na-multi-caru-podle-definicni-tabulky-tip11750">http://www.cadforum.cz/cadforum/prevod-krivky-na-multi-caru-podle-definicni-tabulky-tip11750</a></div><div>&nbsp;</div><div><img src="uploads/9/tomulti.png" height="526" width="676" border="0" /></div><span style="font-size:10px"><br /><br />Upravil Vladimír Michl - 10.led.2018 v 13:25</span>]]>
   </description>
   <pubDate>Wed, 10 Jan 2018 11:05:55 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110055&amp;title=vytvoreni-slozitejsi-polyline#110055</guid>
  </item> 
  <item>
   <title><![CDATA[Vytvoření složitější  polyline : Hezk&#233;, pro CZ verzi jen &amp;#034;Dashed&amp;#034;...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110052&amp;title=vytvoreni-slozitejsi-polyline#110052</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=9">Vladimír Michl</a><br /><strong>Předmět:</strong> 25507<br /><strong>Zasláno:</strong> 09.led.2018 v 22:24<br /><br />Hezké, pro CZ verzi jen "Dashed" -&gt; "Čárkovaná".<br /><br />Plus bude potřeba doplnit ty bloky na začátku a na konci. Buď jako blok nebo "namalovat". Tedy např.<br /><br /><table width="99%"><tr><td><pre class="BBcode">(command "_INSERT" "StartBlock" (vlax-curve-getPointAtParam (vlax-ename-&gt;vla-object ent) 0) "" "" "")</pre></td></tr></table><br />]]>
   </description>
   <pubDate>Tue, 09 Jan 2018 22:24:21 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110052&amp;title=vytvoreni-slozitejsi-polyline#110052</guid>
  </item> 
  <item>
   <title><![CDATA[Vytvoření složitější  polyline : N&#225;vod jak napsat utilitku nebo...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110051&amp;title=vytvoreni-slozitejsi-polyline#110051</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=1045">johny</a><br /><strong>Předmět:</strong> 25507<br /><strong>Zasláno:</strong> 09.led.2018 v 21:36<br /><br />Návod jak napsat utilitku nebo jak hledat? Ukazuje se že není snadné něco kloudného dohledat. Napsat to není opravdu moc složité, ale chce to trochu mít základy.<div><br></div><div>Přemýšlel jsem, že bych napsal něco univerzálnějšího, ale pak jsem dal přednost to napsat jak nejjednodušeji to jde, aby jste si to mohl snadno upravit k obrazu svému. V utilitě jsou použity autocadovské příkazy, takže si to můžete v příkazovém řádku odkoukat. Jediné co je, že mám ENG autocad a neznám přesně české překlady, ale vy pokud budete něco upravovat, tak to můžete klidně přepsat na příkazy české.</div><div><br></div><div>Např "_.COPY" -&gt; "KOPIE", (česky bez podtržítka a tečky)</div><div><font face="Courier New, Courier, mono" size="2"><br></font></div><div><div><font face="Courier New, Courier, mono" size="2">(vl-load-com)</font></div><div><font face="Courier New, Courier, mono" size="2"><br></font></div><div><font face="Courier New, Courier, mono" size="2">(defun c:SložitějšíKřivka ( / pnt enl ent ss i)</font></div><div><font face="Courier New, Courier, mono" size="2"><br></font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; (if (setq pnt (getpoint "\nPrvní bod nebo &lt;vyber&gt;: "))</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; (progn</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; (setq enl (entlast))</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; (command-s "_.PLINE" "_none" pnt)</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; (if (not (equal enl (setq enl (entlast))))</font></div><div><font face="Courier New, Courier, mono" size="2"><span style="white-space:pre">	</span>(setq ss (ssadd enl))))</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; (progn</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; (princ "\nVyber křivky, ")</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; (setq ss (ssget "_:L" '((0 . "LWPOLYLINE"))))))</font></div><div><font face="Courier New, Courier, mono" size="2"><br></font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; (if ss</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; (repeat (setq i (sslength ss))</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; (setq ent (ssname ss (setq i (1- i))))</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; (vla-offset (vlax-ename-&gt;vla-object ent) 0.25)</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; (command "_.CHPROP" "_Last" "" "_Color" 30 ""</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_.PEDIT"&nbsp; "_Last" "_Width" 0.25 "")</font></div><div><font face="Courier New, Courier, mono" size="2"><br></font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; (vla-offset (vlax-ename-&gt;vla-object ent) -0.25)</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; (command "_.CHPROP" "_Last" "" "_Color" 30 ""</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_.PEDIT"&nbsp; "_Last" "_Width" 0.25 "")</font></div><div><font face="Courier New, Courier, mono" size="2"><br></font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; (command "_.CHPROP" ent "" "_Color" 41 ""</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_.PEDIT"&nbsp; ent "_Width" 0.25 "")</font></div><div><font face="Courier New, Courier, mono" size="2"><br></font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; (command "_.COPY" ent "" "_Displacement" "_none" '(0 0 0)</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_.CHPROP" "_Last" "" "_Color" 1 ""</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_.CHPROP" "_Last" "" "_LType" "Dashed" ""</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"_.PEDIT"&nbsp; "_Last" "_Width" 0.08 "")))</font></div><div><font face="Courier New, Courier, mono" size="2">&nbsp; (princ)</font></div><div><font face="Courier New, Courier, mono" size="2">)</font></div></div><div><font size="2"><br></font></div><div>Utilita je LISPem, ten kód vezměte, uložte jako *.lsp někde do SupportPath, ujistěte se že ji máte i mezi SecurityPath, pak to načtěte příkazem _APPLOAD a uložte do Kufříku v dialogu appload.</div>]]>
   </description>
   <pubDate>Tue, 09 Jan 2018 21:36:29 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110051&amp;title=vytvoreni-slozitejsi-polyline#110051</guid>
  </item> 
  <item>
   <title><![CDATA[Vytvoření složitější  polyline : Vzhledem k tomu, &#382;e to je dost...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110050&amp;title=vytvoreni-slozitejsi-polyline#110050</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=9">Vladimír Michl</a><br /><strong>Předmět:</strong> 25507<br /><strong>Zasláno:</strong> 09.led.2018 v 18:26<br /><br />Vzhledem k tomu, že to je dost specifický požadavek a případný nástroj asi nepůjde úplně zobecnit a byl by jen pro vás - je asi jen možnost poptat vývoj takové utility. Johny nebo někdo u nás by si s tím určitě poradili :-)]]>
   </description>
   <pubDate>Tue, 09 Jan 2018 18:26:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110050&amp;title=vytvoreni-slozitejsi-polyline#110050</guid>
  </item> 
  <item>
   <title><![CDATA[Vytvoření složitější  polyline : f&#367;ha, tak to je pro m&#283; &#353;pan&#283;lsk&#225;...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110049&amp;title=vytvoreni-slozitejsi-polyline#110049</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=57656">Fuskic</a><br /><strong>Předmět:</strong> 25507<br /><strong>Zasláno:</strong> 09.led.2018 v 17:54<br /><br />fůha, tak to je pro mě španělská vesnice se přiznám. Nemáte někde někdo náhodou nějaký návod jak se z tohodle vymotat?&nbsp;]]>
   </description>
   <pubDate>Tue, 09 Jan 2018 17:54:10 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110049&amp;title=vytvoreni-slozitejsi-polyline#110049</guid>
  </item> 
  <item>
   <title><![CDATA[Vytvoření složitější  polyline : No asi by &#353;lo docela snadno napsat...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110047&amp;title=vytvoreni-slozitejsi-polyline#110047</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=1045">johny</a><br /><strong>Předmět:</strong> 25507<br /><strong>Zasláno:</strong> 09.led.2018 v 16:28<br /><br />No asi by šlo docela snadno napsat utilitku (nebo i najít), která by aplikovala specifickou sestavu na již nakreslenou polyline (jakože násobný offset + změna vlastností). Samozřejmě by to bylo jen statické, čili kdyby se změnila ta původní polyline, tak by se ostatní nezměnily...]]>
   </description>
   <pubDate>Tue, 09 Jan 2018 16:28:41 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110047&amp;title=vytvoreni-slozitejsi-polyline#110047</guid>
  </item> 
  <item>
   <title><![CDATA[Vytvoření složitější  polyline :  Tlou&#353;&#357;ka jde v&#283;t&#353;inou nahradit...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110043&amp;title=vytvoreni-slozitejsi-polyline#110043</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=9">Vladimír Michl</a><br /><strong>Předmět:</strong> 25507<br /><strong>Zasláno:</strong> 09.led.2018 v 15:07<br /><br />Tloušťka jde většinou nahradit výplní, popř. jde změnit globálně (jako u jiných čar).]]>
   </description>
   <pubDate>Tue, 09 Jan 2018 15:07:55 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110043&amp;title=vytvoreni-slozitejsi-polyline#110043</guid>
  </item> 
  <item>
   <title><![CDATA[Vytvoření složitější  polyline : To nen&#237; dobr&#233;, a kdy&#382; by se jednalo...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110042&amp;title=vytvoreni-slozitejsi-polyline#110042</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=57656">Fuskic</a><br /><strong>Předmět:</strong> 25507<br /><strong>Zasláno:</strong> 09.led.2018 v 14:56<br /><br />To není dobré, a když by se jednalo pouze o křivku, řešení by tedy bylo před tu Multičáru? zkoušel jsem to složil, ale odrazuje mě tam věc, že nejde nastavit tloušťka jednotlivých čar.<div>&nbsp;Nebo je řešení takové, že to musím poskládát po desetinách milimetru čáry jedné barvy a posléze na střed v řadě za sebou umístit tu čárkovanou?&nbsp;</div><div><br></div>]]>
   </description>
   <pubDate>Tue, 09 Jan 2018 14:56:29 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=25507&amp;PID=110042&amp;title=vytvoreni-slozitejsi-polyline#110042</guid>
  </item> 
 </channel>
</rss>