<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Комментарии на: Как можно вставить dwf(x) в текущий документ dwg?</title>
	<atom:link href="https://autolisp.ru/2015/02/12/howto-insert-dwf-to-dwg/feed/" rel="self" type="application/rss+xml" />
	<link>https://autolisp.ru/2015/02/12/howto-insert-dwf-to-dwg/</link>
	<description>LISP для AutoCAD</description>
	<lastBuildDate>Tue, 24 Feb 2026 16:11:05 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0</generator>
	<item>
		<title>От: ElpanovEvgeniy</title>
		<link>https://autolisp.ru/2015/02/12/howto-insert-dwf-to-dwg/comment-page-1/#comment-55329</link>
		<dc:creator><![CDATA[ElpanovEvgeniy]]></dc:creator>
		<pubDate>Mon, 16 Feb 2015 08:31:31 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=2625#comment-55329</guid>
		<description><![CDATA[Забыл добавить, код писал в AutoCAD 2015, там же и проверял...]]></description>
		<content:encoded><![CDATA[<p>Забыл добавить, код писал в AutoCAD 2015, там же и проверял...</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: ElpanovEvgeniy</title>
		<link>https://autolisp.ru/2015/02/12/howto-insert-dwf-to-dwg/comment-page-1/#comment-55315</link>
		<dc:creator><![CDATA[ElpanovEvgeniy]]></dc:creator>
		<pubDate>Fri, 13 Feb 2015 17:27:12 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=2625#comment-55315</guid>
		<description><![CDATA[Всем привет!

У меня получилось и через dxf создать ссылку на dwf.
Прошу прощения, код только демонстрация, не рассматриваются никакие частные случаи, т.е запускаем в пустом файле.
 &quot;D:\\test.dwf&quot; = путь к dwf
&quot;test_dwf&quot; = название ссылки

Ссылка на dwf вставляется и нормально работает, но в диспетчере появляется только после сохранения файла.
[cc lang=&quot;lisp&quot;]
(setq f  &quot;D:\\test.dwf&quot;
      n  &quot;test_dwf&quot;
      e5 (entmakex (list &#039;(0 . &quot;DWFDEFINITION&quot;)
                         &#039;(100 . &quot;AcDbUnderlayDefinition&quot;)
                         (cons 1 f)
                         &#039;(2 . &quot;Несохраненный чертеж-Model&quot;)
                         &#039;(-3 (&quot;ACAD&quot; (1000 . &quot;LOAD&quot;)))
                   )
         )
      e3 (entmakex (list &#039;(0 . &quot;DICTIONARY&quot;)
                         &#039;(102 . &quot;{ACAD_REACTORS&quot;)
                         (cons 330 (NAMEDOBJDICT))
                         &#039;(102 . &quot;}&quot;)
                         (cons 330 (NAMEDOBJDICT))
                         &#039;(100 . &quot;AcDbDictionary&quot;)
                         &#039;(280 . 0)
                         &#039;(281 . 1)
                         (cons 3 f)
                         (cons 350 e5)
                   )
         )
)
(entmod (append (entget (namedobjdict)) (list &#039;(3 . &quot;ACAD_DWFDEFINITIONS&quot;) (cons 350 e3))))
(setq e4 (entmakex (list &#039;(0 . &quot;DWFDEFINITION&quot;)
                         (cons 330 e3)
                         &#039;(100 . &quot;AcDbUnderlayDefinition&quot;)
                         (cons 1 f)
                         (cons 2 n)
                   )
         )
      e6 (entmakex (list &#039;(0 . &quot;DWFUNDERLAY&quot;)
                         &#039;(100 . &quot;AcDbEntity&quot;)
                         &#039;(67 . 0)
                         &#039;(410 . &quot;Model&quot;)
                         &#039;(8 . &quot;0&quot;)
                         &#039;(100 . &quot;AcDbUnderlayReference&quot;)
                         (cons 340 e5)
                         &#039;(10 16.3241 9.47381 0.0)
                         &#039;(41 . 1.0)
                         &#039;(42 . 1.0)
                         &#039;(43 . 1.0)
                         &#039;(50 . 0.0)
                         &#039;(210 0.0 0.0 1.0)
                         &#039;(280 . 11)
                         &#039;(281 . 75)
                         &#039;(282 . 25)
                   )
         )
)
(entmod
  (append (reverse (member (assoc 5 (entget e5)) (reverse (entget e5))))
          (list &#039;(102 . &quot;{ACAD_REACTORS&quot;) (cons 330 e3) (cons 330 e6) &#039;(102 . &quot;}&quot;) (cons 330 e3))
          (member &#039;(100 . &quot;AcDbUnderlayDefinition&quot;) (entget e5))
  )
)


[/cc]]]></description>
		<content:encoded><![CDATA[<p>Всем привет!</p>
<p>У меня получилось и через dxf создать ссылку на dwf.<br />
Прошу прощения, код только демонстрация, не рассматриваются никакие частные случаи, т.е запускаем в пустом файле.<br />
 "D:\\test.dwf" = путь к dwf<br />
"test_dwf" = название ссылки</p>
<p>Ссылка на dwf вставляется и нормально работает, но в диспетчере появляется только после сохранения файла.</p>
<div class="codecolorer-container lisp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br />53<br />54<br />55<br /></div></td><td><div class="lisp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;"><span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">setq</span> f &nbsp;<span style="color: #ff0000;">&quot;D:<span style="color: #000099; font-weight: bold;">\\</span>test.dwf&quot;</span><br />
&nbsp; &nbsp; &nbsp; n &nbsp;<span style="color: #ff0000;">&quot;test_dwf&quot;</span><br />
&nbsp; &nbsp; &nbsp; e5 <span style="color: #66cc66;">&#40;</span>entmakex <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">list</span> '<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;DWFDEFINITION&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;AcDbUnderlayDefinition&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">1</span> f<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">2</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;Несохраненный чертеж-Model&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span>-<span style="color: #cc66cc;">3</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;ACAD&quot;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">1000</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;LOAD&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; e3 <span style="color: #66cc66;">&#40;</span>entmakex <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">list</span> '<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;DICTIONARY&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">102</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;{ACAD_REACTORS&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">330</span> <span style="color: #66cc66;">&#40;</span>NAMEDOBJDICT<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">102</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;}&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">330</span> <span style="color: #66cc66;">&#40;</span>NAMEDOBJDICT<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;AcDbDictionary&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">280</span> <span style="color: #66cc66;">.</span> <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">281</span> <span style="color: #66cc66;">.</span> <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">3</span> f<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">350</span> e5<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span><br />
<span style="color: #66cc66;">&#41;</span><br />
<span style="color: #66cc66;">&#40;</span>entmod <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">append</span> <span style="color: #66cc66;">&#40;</span>entget <span style="color: #66cc66;">&#40;</span>namedobjdict<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">list</span> '<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">3</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;ACAD_DWFDEFINITIONS&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">350</span> e3<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">setq</span> e4 <span style="color: #66cc66;">&#40;</span>entmakex <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">list</span> '<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;DWFDEFINITION&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">330</span> e3<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;AcDbUnderlayDefinition&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">1</span> f<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">2</span> n<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; e6 <span style="color: #66cc66;">&#40;</span>entmakex <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">list</span> '<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;DWFUNDERLAY&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;AcDbEntity&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">67</span> <span style="color: #66cc66;">.</span> <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">410</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;Model&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">8</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;0&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;AcDbUnderlayReference&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">340</span> e5<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">10</span> <span style="color: #cc66cc;">16.3241</span> <span style="color: #cc66cc;">9.47381</span> <span style="color: #cc66cc;">0.0</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">41</span> <span style="color: #66cc66;">.</span> <span style="color: #cc66cc;">1.0</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">42</span> <span style="color: #66cc66;">.</span> <span style="color: #cc66cc;">1.0</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">43</span> <span style="color: #66cc66;">.</span> <span style="color: #cc66cc;">1.0</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">50</span> <span style="color: #66cc66;">.</span> <span style="color: #cc66cc;">0.0</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">210</span> <span style="color: #cc66cc;">0.0</span> <span style="color: #cc66cc;">0.0</span> <span style="color: #cc66cc;">1.0</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">280</span> <span style="color: #66cc66;">.</span> <span style="color: #cc66cc;">11</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">281</span> <span style="color: #66cc66;">.</span> <span style="color: #cc66cc;">75</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">282</span> <span style="color: #66cc66;">.</span> <span style="color: #cc66cc;">25</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span><br />
<span style="color: #66cc66;">&#41;</span><br />
<span style="color: #66cc66;">&#40;</span>entmod<br />
&nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">append</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">reverse</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">member</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">assoc</span> <span style="color: #cc66cc;">5</span> <span style="color: #66cc66;">&#40;</span>entget e5<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">reverse</span> <span style="color: #66cc66;">&#40;</span>entget e5<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">list</span> '<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">102</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;{ACAD_REACTORS&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">330</span> e3<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">330</span> e6<span style="color: #66cc66;">&#41;</span> '<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">102</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;}&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">330</span> e3<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">member</span> '<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span> <span style="color: #66cc66;">.</span> <span style="color: #ff0000;">&quot;AcDbUnderlayDefinition&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span>entget e5<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; <span style="color: #66cc66;">&#41;</span><br />
<span style="color: #66cc66;">&#41;</span></div></td></tr></tbody></table></div>
]]></content:encoded>
	</item>
	<item>
		<title>От: Кулик Алексей aka kpblc</title>
		<link>https://autolisp.ru/2015/02/12/howto-insert-dwf-to-dwg/comment-page-1/#comment-55311</link>
		<dc:creator><![CDATA[Кулик Алексей aka kpblc]]></dc:creator>
		<pubDate>Fri, 13 Feb 2015 07:15:37 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=2625#comment-55311</guid>
		<description><![CDATA[Конечно, костыли. У меня сейчас вообще какой-то Франкенштейн получается :) И лисп, и arx, и .NET - все в одном :)]]></description>
		<content:encoded><![CDATA[<p>Конечно, костыли. У меня сейчас вообще какой-то Франкенштейн получается <img src="https://autolisp.ru/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> И лисп, и arx, и .NET - все в одном <img src="https://autolisp.ru/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Андрей</title>
		<link>https://autolisp.ru/2015/02/12/howto-insert-dwf-to-dwg/comment-page-1/#comment-55307</link>
		<dc:creator><![CDATA[Андрей]]></dc:creator>
		<pubDate>Thu, 12 Feb 2015 20:40:51 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=2625#comment-55307</guid>
		<description><![CDATA[&gt;Андрей, но ведь это же костыли будут! Оно надо? Я, скорее всего, буду для этой задачи использовать c#, благо работающие примеры есть )))

Чем этот случай отличается от той ситуации, когда ты на .net недавно писал lisp-функции по взрыву\расчленению proxy? То были не костыли, а это костыли?]]></description>
		<content:encoded><![CDATA[<p>&gt;Андрей, но ведь это же костыли будут! Оно надо? Я, скорее всего, буду для этой задачи использовать c#, благо работающие примеры есть )))</p>
<p>Чем этот случай отличается от той ситуации, когда ты на .net недавно писал lisp-функции по взрыву\расчленению proxy? То были не костыли, а это костыли?</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Кулик Алексей aka kpblc</title>
		<link>https://autolisp.ru/2015/02/12/howto-insert-dwf-to-dwg/comment-page-1/#comment-55304</link>
		<dc:creator><![CDATA[Кулик Алексей aka kpblc]]></dc:creator>
		<pubDate>Thu, 12 Feb 2015 12:49:59 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=2625#comment-55304</guid>
		<description><![CDATA[Андрей, но ведь это же костыли будут! Оно надо? Я, скорее всего, буду для этой задачи использовать c#, благо работающие примеры есть )))]]></description>
		<content:encoded><![CDATA[<p>Андрей, но ведь это же костыли будут! Оно надо? Я, скорее всего, буду для этой задачи использовать c#, благо работающие примеры есть )))</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Андрей</title>
		<link>https://autolisp.ru/2015/02/12/howto-insert-dwf-to-dwg/comment-page-1/#comment-55303</link>
		<dc:creator><![CDATA[Андрей]]></dc:creator>
		<pubDate>Thu, 12 Feb 2015 12:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=2625#comment-55303</guid>
		<description><![CDATA[либо на .net написать дополнительные lisp-функции. Собственно подобные ситуации я и имел в виду, когда создавал этот опрос: http://adn-cis.org/forum/index.php?topic=349.0]]></description>
		<content:encoded><![CDATA[<p>либо на .net написать дополнительные lisp-функции. Собственно подобные ситуации я и имел в виду, когда создавал этот опрос: <a href="http://adn-cis.org/forum/index.php?topic=349.0" rel="nofollow">http://adn-cis.org/forum/index.php?topic=349.0</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
