<?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: How to use Bpoly function? in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12773927#M13973</link>
    <description>&lt;P&gt;Used bpoly for years, inside lisps or manual, I think you need to post a dwg so we can see what it is your trying to do. If its lisp post code as well.&lt;/P&gt;</description>
    <pubDate>Wed, 15 May 2024 03:06:53 GMT</pubDate>
    <dc:creator>Sea-Haven</dc:creator>
    <dc:date>2024-05-15T03:06:53Z</dc:date>
    <item>
      <title>How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12771885#M13963</link>
      <description>&lt;P&gt;I'm researching the Bpoly function but haven't found any documentation on how to use this function. Hope anyone can explain to me. I've been doing a little research now.&lt;BR /&gt;(bpoly [point] [selection-set] [option-keyword] ...)&lt;BR /&gt;option-keyword as a list but I don't know how to use it.&lt;BR /&gt;Help me!&lt;/P&gt;&lt;P&gt;Thank.&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 10:44:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12771885#M13963</guid>
      <dc:creator>nguyennhattanpt</dc:creator>
      <dc:date>2024-05-14T10:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772164#M13964</link>
      <description>&lt;P&gt;i think the only parameter in the bpoly function is a point. if it finds a closed boundary at a given point, then it draws a polyline boundary and returns its ename; otherwise, it returns nil.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 12:47:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772164#M13964</guid>
      <dc:creator>komondormrex</dc:creator>
      <dc:date>2024-05-14T12:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772364#M13965</link>
      <description>&lt;P&gt;It's odd that (bpoly) is not in the AutoLisp Reference.&amp;nbsp; But it does exist as an AutoLisp function, and&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13423916"&gt;@komondormrex&lt;/a&gt;&amp;nbsp;seems to be correct [&lt;EM&gt;one&lt;/EM&gt; trial here] that a single point argument does it.&amp;nbsp; For more complex situations, you should of course be able to use the BPOLY&amp;nbsp;&lt;EM&gt;command&lt;/EM&gt;&amp;nbsp;rather than the AutoLisp function.&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 13:48:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772364#M13965</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2024-05-14T13:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772391#M13966</link>
      <description>&lt;P&gt;Not really. bpoly function allows the use of 0, 1 or more variables. If there is no variable, it will be like a command boundary. 1 variable works as you said.&lt;BR /&gt;i used with 3 variables it worked. variable 2 is Selection-set ; same as boundary-set of the boundary statement.&lt;BR /&gt;3rd variable is a list (I tried with '(0 0 0)); I don't understand what it is.&lt;BR /&gt;The msg returned is: "Invalid option keyword"&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 13:57:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772391#M13966</guid>
      <dc:creator>nguyennhattanpt</dc:creator>
      <dc:date>2024-05-14T13:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772406#M13967</link>
      <description>&lt;P&gt;Try using this command: (bpoly (getpoint) (ssget) '(0 0 0))&lt;/P&gt;&lt;P&gt;you will see it working!&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 14:00:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772406#M13967</guid>
      <dc:creator>nguyennhattanpt</dc:creator>
      <dc:date>2024-05-14T14:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772464#M13968</link>
      <description>&lt;P&gt;mmmm, this has no sense, i mean for (bpoly) to have parameters other than a point. i mean, i think it is a short-function method apart from the command to get pline boundary at a point. but who knows...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 14:17:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772464#M13968</guid>
      <dc:creator>komondormrex</dc:creator>
      <dc:date>2024-05-14T14:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772562#M13969</link>
      <description>&lt;P&gt;Without some documentation of the arguments and syntax required [I haven't found any], who can say?&amp;nbsp; So I have to ask:&amp;nbsp; where or how did you encounter (bpoly) as an AutoLisp function rather than a command, and where do you get the idea of the arguments you suggest?&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 14:43:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772562#M13969</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2024-05-14T14:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772584#M13970</link>
      <description>&lt;P&gt;best I could find.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.theswamp.org/index.php?topic=24759.0" target="_blank"&gt;https://www.theswamp.org/index.php?topic=24759.0&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 14:52:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12772584#M13970</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2024-05-14T14:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12773148#M13971</link>
      <description>&lt;P&gt;Example Post Link :&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/cad-boundary-around-the-text-or-point/td-p/12542965" target="_blank" rel="noopener"&gt;HERE&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Simple usage:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(setq e (bpoly (getpoint)))&lt;/PRE&gt;&lt;P&gt;FYI - It is currently not recommended to use this undocumented function because it has some issues. Instead you should use:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(setq bp (getpoint "\nSelect Internal Point: "))&lt;/P&gt;&lt;P&gt;(command "._-Boundary" "_non" bp "")&lt;BR /&gt;; Get new polyline created&lt;BR /&gt;(setq en (entlast))&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 19:37:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12773148#M13971</guid>
      <dc:creator>pkenewell6347</dc:creator>
      <dc:date>2024-05-14T19:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12773659#M13972</link>
      <description>Tkank BeekeecCZ.&lt;BR /&gt;At the end of the conference the error still appears, I also have the same error and cannot resolve it.</description>
      <pubDate>Tue, 14 May 2024 23:27:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12773659#M13972</guid>
      <dc:creator>nguyennhattanpt</dc:creator>
      <dc:date>2024-05-14T23:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12773927#M13973</link>
      <description>&lt;P&gt;Used bpoly for years, inside lisps or manual, I think you need to post a dwg so we can see what it is your trying to do. If its lisp post code as well.&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 03:06:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12773927#M13973</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2024-05-15T03:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12774021#M13974</link>
      <description>I usually use (command "_.boundary" ...) however recently I discovered there is a function (bpoly pt), assuming this function will run directly without going through cmd; So I want to learn to improve Autolisp's running speed</description>
      <pubDate>Wed, 15 May 2024 04:24:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12774021#M13974</guid>
      <dc:creator>nguyennhattanpt</dc:creator>
      <dc:date>2024-05-15T04:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12775312#M13975</link>
      <description>&lt;P&gt;Have you tried to use it via my last post? It does work and is simple. There are no other options or setup to use. The function - at least for now - is loaded by AutoCAD at startup.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Please again note however that this is an undocumented, unsupported function, so there is very little documentation on it's usage at all. Try searching for it in Autodesk's help in the product documentation or the developer's guide and it is non-existent.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If someone can correct me on this - Show me where the documentation exists because I would love to know as well. I think it is an ADS function written in C? Have they updated it?&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 16:02:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12775312#M13975</guid>
      <dc:creator>pkenewell6347</dc:creator>
      <dc:date>2024-05-15T16:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Bpoly function?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12776366#M13976</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;(bpoly pt) not supported in Bricscad V20 maybe a later version. But help says exists.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 01:14:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-use-bpoly-function/m-p/12776366#M13976</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2024-05-16T01:14:29Z</dc:date>
    </item>
  </channel>
</rss>

