<?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>Комментарии на: Особенности vla-функций и их применения</title>
	<atom:link href="https://autolisp.ru/2009/10/01/vla-function-features/feed/" rel="self" type="application/rss+xml" />
	<link>https://autolisp.ru/2009/10/01/vla-function-features/</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>От: Кулик Алексей aka kpblc</title>
		<link>https://autolisp.ru/2009/10/01/vla-function-features/comment-page-1/#comment-927</link>
		<dc:creator><![CDATA[Кулик Алексей aka kpblc]]></dc:creator>
		<pubDate>Mon, 09 Nov 2009 15:19:12 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=108#comment-927</guid>
		<description><![CDATA[Это понятно :) Проблема в том, что для некоторых объектов координаты задаются в мировой системе; для некоторых - в системе объекта. А эту &quot;некоторость&quot; приходится постоянно держать в голове.]]></description>
		<content:encoded><![CDATA[<p>Это понятно <img src="https://autolisp.ru/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> Проблема в том, что для некоторых объектов координаты задаются в мировой системе; для некоторых - в системе объекта. А эту "некоторость" приходится постоянно держать в голове.</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Do$</title>
		<link>https://autolisp.ru/2009/10/01/vla-function-features/comment-page-1/#comment-926</link>
		<dc:creator><![CDATA[Do$]]></dc:creator>
		<pubDate>Mon, 09 Nov 2009 14:01:16 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=108#comment-926</guid>
		<description><![CDATA[Конечно, просто опечатка! Не совпадают центры окружностей, полученных entmakex и vla. Долго пытался понять почему так, методом проб и ошибок выяснил, что в entget-списке окружности координаты центра хранятся в ситеме координат этой окружности.]]></description>
		<content:encoded><![CDATA[<p>Конечно, просто опечатка! Не совпадают центры окружностей, полученных entmakex и vla. Долго пытался понять почему так, методом проб и ошибок выяснил, что в entget-списке окружности координаты центра хранятся в ситеме координат этой окружности.</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Кулик Алексей aka kpblc</title>
		<link>https://autolisp.ru/2009/10/01/vla-function-features/comment-page-1/#comment-924</link>
		<dc:creator><![CDATA[Кулик Алексей aka kpblc]]></dc:creator>
		<pubDate>Mon, 09 Nov 2009 13:08:15 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=108#comment-924</guid>
		<description><![CDATA[Да, опечатался. Но дело в том, что замена центра на &#039;(100. 10. 100.) ситуацию не изменит:
[cc lang=&quot;cadlisp&quot;](defun test (/ center rad normal ent vla)

  (setq center &#039;(100. 10. 100.)
        rad    60.
        normal &#039;(-0.671718 -0.251372 0.696855)
        ent    (entmakex (list &#039;(0 . &quot;CIRCLE&quot;)
                               (cons 10 center)
                               (cons 40 rad)
                               &#039;(62 . 1)
                               (cons 210 normal)
                               ) ;_ end of list
                         ) ;_ end of entmakex
        vla    (vla-addcircle
                 (vla-get-modelspace
                   (vla-get-activedocument
                     (vlax-get-acad-object)
                     ) ;_ end of vla-get-ActiveDocument
                   ) ;_ end of vla-get-ModelSpace
                 (vlax-3d-point center)
                 rad
                 ) ;_ end of vla-addcircle
        ) ;_ end of setq
  (vla-put-color vla 2)
  (vla-put-normal vla (vlax-3d-point normal))
  (foreach item (list (cons &quot;entmakex&quot; ent)
                      (cons &quot;vla&quot; (vlax-vla-object-&gt;ename vla))
                      ) ;_ end of list
    (princ
      (strcat &quot;\n ** &quot;
              (car item)
              &quot; : &quot;
              (vl-princ-to-string
                (vl-remove-if
                  (function (lambda (x) (member (car x) &#039;(-1 5 330))))
                  (entget (cdr item))
                  ) ;_ end of vl-remove-if
                ) ;_ end of vl-princ-to-string
              ) ;_ end of strcat
      ) ;_ end of princ
    ) ;_ end of foreach
  (princ)
  ) ;_ end of defun[/cc]И в ком.строке сравнить группу 10.
Или я где-то ошибся? Прошу поправить, если это не так.]]></description>
		<content:encoded><![CDATA[<p>Да, опечатался. Но дело в том, что замена центра на '(100. 10. 100.) ситуацию не изменит:</p>
<div class="codecolorer-container cadlisp 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 /></div></td><td><div class="cadlisp 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;">defun</span> test <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">/</span> center rad normal ent vla<span style="color: #66cc66;">&#41;</span><br />
<br />
&nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">setq</span> center '<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span>. <span style="color: #cc66cc;">10</span>. <span style="color: #cc66cc;">100</span>.<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; rad &nbsp; &nbsp;<span style="color: #cc66cc;">60</span>.<br />
&nbsp; &nbsp; &nbsp; &nbsp; normal '<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">-</span><span style="color: #cc66cc;">0.671718</span> <span style="color: #66cc66;">-</span><span style="color: #cc66cc;">0.251372</span> <span style="color: #cc66cc;">0.696855</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; ent &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">entmakex</span> <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: #ff0000;">&quot;CIRCLE&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &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;">10</span> center<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &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;">40</span> rad<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">62</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; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #cc66cc;">210</span> normal<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of list</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of entmakex</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; vla &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span>vla<span style="color: #66cc66;">-</span>addcircle<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span>vla<span style="color: #66cc66;">-</span>get<span style="color: #66cc66;">-</span>modelspace<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span>vla<span style="color: #66cc66;">-</span>get<span style="color: #66cc66;">-</span>activedocument<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">vlax-get-acad-object</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of vla-get-ActiveDocument</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of vla-get-ModelSpace</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">vlax-3d-point</span> center<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;rad<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of vla-addcircle</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of setq</span><br />
&nbsp; <span style="color: #66cc66;">&#40;</span>vla<span style="color: #66cc66;">-</span>put<span style="color: #66cc66;">-</span>color vla <span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; <span style="color: #66cc66;">&#40;</span>vla<span style="color: #66cc66;">-</span>put<span style="color: #66cc66;">-</span>normal vla <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">vlax-3d-point</span> normal<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">foreach</span> item <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">list</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cons</span> <span style="color: #ff0000;">&quot;entmakex&quot;</span> ent<span style="color: #66cc66;">&#41;</span><br />
&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: #ff0000;">&quot;vla&quot;</span> <span style="color: #66cc66;">&#40;</span>vlax<span style="color: #66cc66;">-</span>vla<span style="color: #66cc66;">-</span>object<span style="color: #66cc66;">-&gt;</span>ename vla<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of list</span><br />
&nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">princ</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">strcat</span> <span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span> ** &quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">car</span> item<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">&quot; : &quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">vl-princ-to-string</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">vl-remove-if</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">function</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">lambda</span> <span style="color: #66cc66;">&#40;</span>x<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">member</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">car</span> x<span style="color: #66cc66;">&#41;</span> '<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">-</span><span style="color: #cc66cc;">1</span> <span style="color: #cc66cc;">5</span> <span style="color: #cc66cc;">330</span><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; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">entget</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cdr</span> item<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of vl-remove-if</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of vl-princ-to-string</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of strcat</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of princ</span><br />
&nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of foreach</span><br />
&nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">princ</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of defun</span></div></td></tr></tbody></table></div>
<p>И в ком.строке сравнить группу 10.<br />
Или я где-то ошибся? Прошу поправить, если это не так.</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Do$</title>
		<link>https://autolisp.ru/2009/10/01/vla-function-features/comment-page-1/#comment-922</link>
		<dc:creator><![CDATA[Do$]]></dc:creator>
		<pubDate>Mon, 09 Nov 2009 11:11:19 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=108#comment-922</guid>
		<description><![CDATA[&lt;blockquote&gt;А если взять объект посложнее? Например, окружность?
[cc lang=&quot;cadlisp&quot;] (entmakex &#039;((0 . &quot;CIRCLE&quot;)
            (10 100. 10. 100.)
            (40 . 60.)
            (210 -0.671718 -0.251372 0.696855)
            )
          ) ;_ end of entmakex 


 (vla-put-normal
  (vla-addcircle
    (vla-get-modelspace
      (vla-get-activedocument
        (vlax-get-acad-object)
        ) ;_ end of vla-get-ActiveDocument
      ) ;_ end of vla-get-ModelSpace
    (vlax-3d-point &#039;(100. 0. 0.))
    60
    ) ;_ end of vla-AddCircle
  (vlax-3d-point &#039;(-0.671718 -0.251372 0.696855))
  ) ;_ end of vla-put-normal [/cc]
Разными будут координаты центров окружностей.&lt;/blockquote&gt;

Они и в кодах тоже разные! Где entmakex -  (10 100. 10. 100.), vla - (vlax-3d-point &#039;(100. 0. 0.))]]></description>
		<content:encoded><![CDATA[<blockquote><p>А если взять объект посложнее? Например, окружность?</p>
<div class="codecolorer-container cadlisp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><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 /></div></td><td><div class="cadlisp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">&nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">entmakex</span> '<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span> . <span style="color: #ff0000;">&quot;CIRCLE&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">10</span> <span style="color: #cc66cc;">100</span>. <span style="color: #cc66cc;">10</span>. <span style="color: #cc66cc;">100</span>.<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">40</span> . <span style="color: #cc66cc;">60</span>.<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">210</span> <span style="color: #66cc66;">-</span><span style="color: #cc66cc;">0.671718</span> <span style="color: #66cc66;">-</span><span style="color: #cc66cc;">0.251372</span> <span style="color: #cc66cc;">0.696855</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of entmakex </span><br />
<br />
<br />
&nbsp;<span style="color: #66cc66;">&#40;</span>vla<span style="color: #66cc66;">-</span>put<span style="color: #66cc66;">-</span>normal<br />
&nbsp; <span style="color: #66cc66;">&#40;</span>vla<span style="color: #66cc66;">-</span>addcircle<br />
&nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span>vla<span style="color: #66cc66;">-</span>get<span style="color: #66cc66;">-</span>modelspace<br />
&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span>vla<span style="color: #66cc66;">-</span>get<span style="color: #66cc66;">-</span>activedocument<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">vlax-get-acad-object</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of vla-get-ActiveDocument</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of vla-get-ModelSpace</span><br />
&nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">vlax-3d-point</span> '<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span>. <span style="color: #cc66cc;">0</span>. <span style="color: #cc66cc;">0</span>.<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #cc66cc;">60</span><br />
&nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of vla-AddCircle</span><br />
&nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">vlax-3d-point</span> '<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">-</span><span style="color: #cc66cc;">0.671718</span> <span style="color: #66cc66;">-</span><span style="color: #cc66cc;">0.251372</span> <span style="color: #cc66cc;">0.696855</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; <span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">;_ end of vla-put-normal</span></div></td></tr></tbody></table></div>
<p>Разными будут координаты центров окружностей.</p></blockquote>
<p>Они и в кодах тоже разные! Где entmakex -  (10 100. 10. 100.), vla - (vlax-3d-point '(100. 0. 0.))</p>
]]></content:encoded>
	</item>
</channel>
</rss>
