<?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: convert 3D solid to 3D faces with LSP program. in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6632520#M127599</link>
    <description>&lt;P&gt;Thanks for posting here&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/940934"&gt;@marko_ribar﻿&lt;/a&gt;&amp;nbsp;(and at TheSwamp). I was hoping I wasn't missing something with regards to the MESHSMOOTH command. Seems I was on the right path all along. Thanks for confirming I wasn't losing my mind. &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Oct 2016 17:34:34 GMT</pubDate>
    <dc:creator>Matt__W</dc:creator>
    <dc:date>2016-10-19T17:34:34Z</dc:date>
    <item>
      <title>convert 3D solid to 3D faces with LSP program.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6630098#M127594</link>
      <description>&lt;P&gt;I placed a pline to make a box, extrude it to became 3Dsolid, and want to convert 3D solid&amp;nbsp;to 3D faces. I ran codes below, but sometime it&amp;nbsp;converted and other time it didn't. Anyone has a suggestion that I can try?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;codes:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;(prompt "\nSelect 3D solid to convert: \n")&lt;BR /&gt;&amp;nbsp;(setq 3D_ENT (car (entsel)))&lt;/P&gt;&lt;P&gt;&amp;nbsp;(command "convtosurface" 3D_ENT "")&lt;BR /&gt;&amp;nbsp;(vla-SendCommand&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (vla-get-ActiveDocument (vlax-get-acad-object))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (strcat "UNION" " " "(ssget \"L\")" " " "\r")&lt;BR /&gt;&amp;nbsp;)&lt;BR /&gt;&amp;nbsp;(vla-SendCommand&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (vla-get-ActiveDocument (vlax-get-acad-object))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (strcat "MESHSMOOTH" " " "(ssget \"P\")" " " "\r")&lt;BR /&gt;&amp;nbsp;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;(vla-SendCommand&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (vla-get-ActiveDocument (vlax-get-acad-object))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (strcat "explode" " " "(ssget \"L\")" " " "\r")&lt;BR /&gt;&amp;nbsp;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2016 19:31:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6630098#M127594</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-18T19:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: convert 3D solid to 3D faces with LSP program.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6630327#M127595</link>
      <description>Looking ta your code I think all you want to do is.
&lt;BR /&gt;
(defun c:QUICK()&lt;BR /&gt;
&lt;BR /&gt;(setq 3D_ENT (car (entsel "\nSelect Solid")))
&lt;BR /&gt;(if 3D_ENT  ; We are assuming you picked a solid
&lt;BR /&gt;(progn
&lt;BR /&gt;(command "CONVTOSURFACE" 3D_ENT "")
&lt;BR /&gt;(command "UNION" (entlast) "")
&lt;BR /&gt;(command "MESHSMOOTH" (entlast) "")
&lt;BR /&gt;(command "EXPLODE" (entlast))
&lt;BR /&gt;); progn
&lt;BR /&gt;);if
&lt;BR /&gt;);defun
&lt;BR /&gt;
&lt;BR /&gt;
good luck</description>
      <pubDate>Tue, 18 Oct 2016 21:12:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6630327#M127595</guid>
      <dc:creator>SeeMSixty7</dc:creator>
      <dc:date>2016-10-18T21:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: convert 3D solid to 3D faces with LSP program.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6631569#M127596</link>
      <description>I tested but got same result (like no change/nothing happened at line: (command "MESHSMOOTH" (entlast) "")). I'll check of other solutions. Thanks for taking time to help me out.&lt;BR /&gt;&lt;BR /&gt;[KI]&lt;BR /&gt;&lt;BR /&gt;TONY YANG | CAD PROGRAMMER/ANALYST&lt;BR /&gt;&lt;BR /&gt;P: 920.468.2609 | E: tony.yang@ki.com | ki.com&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;[Facebook]&lt;BR /&gt;&lt;BR /&gt;[Twitter]&lt;BR /&gt;&lt;BR /&gt;[Youtube]&lt;BR /&gt;&lt;BR /&gt;[LinkedIn]&lt;BR /&gt;&lt;BR /&gt;[Pinterest]&lt;BR /&gt;&lt;BR /&gt;[Instagram]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;[KI - Fixed Seating]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;________________________________&lt;BR /&gt;&lt;BR /&gt;As a trusted market resource, KI furnishes more than furniture. We furnish knowledge. &lt;A href="http://www.ki.com" target="_blank"&gt;www.ki.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This e-mail, including attachments, is intended solely for the person or entity to which it is addressed and may contain&lt;BR /&gt;confidential, privileged and/or proprietary information. Any review, dissemination, distribution, copying, printing, or other&lt;BR /&gt;use of this e-mail by persons or entities other than the addressee or his/her authorized agent is prohibited. If you have&lt;BR /&gt;received this e-mail in error, please contact the sender immediately and delete the material from your computer.</description>
      <pubDate>Wed, 19 Oct 2016 12:23:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6631569#M127596</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-19T12:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: convert 3D solid to 3D faces with LSP program.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6631981#M127597</link>
      <description>&lt;P&gt;I don't know why you need union.&amp;nbsp;Union needs 2 entities. Try this. Create the 3d solid, explode to turn into regions, call meshsmooth to convert regions to&amp;nbsp;mesh and finally call explode again to convert mesh to 3d faces.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2016 14:41:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6631981#M127597</guid>
      <dc:creator>Ranjit_Singh</dc:creator>
      <dc:date>2016-10-19T14:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: convert 3D solid to 3D faces with LSP program.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6632356#M127598</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1092040"&gt;@SeeMSixty7&lt;/a&gt; wrote:&lt;BR /&gt;Looking ta your code I think all you want to do is.&lt;BR /&gt;(defun c:QUICK()&lt;BR /&gt;&lt;BR /&gt;(setq 3D_ENT (car (entsel "\nSelect Solid")))&lt;BR /&gt;(if 3D_ENT ; We are assuming you picked a solid&lt;BR /&gt;(progn&lt;BR /&gt;(command "CONVTOSURFACE" 3D_ENT "")&lt;BR /&gt;(command "UNION" (entlast) "")&lt;BR /&gt;(command "MESHSMOOTH" (entlast) "")&lt;BR /&gt;(command "EXPLODE" (entlast))&lt;BR /&gt;); progn&lt;BR /&gt;);if&lt;BR /&gt;);defun&lt;BR /&gt;&lt;BR /&gt;good luck&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;MESHSMOOTH command won't work in (command ...) calls, instead OP guessed correctly by using it inside (vla-sendcommand) call...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Look here for my reply :&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.theswamp.org/index.php?topic=52160.msg571599#msg571599" target="_blank"&gt;https://www.theswamp.org/index.php?topic=52160.msg571599#msg571599&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HTH, M.R.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2016 16:36:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6632356#M127598</guid>
      <dc:creator>marko_ribar</dc:creator>
      <dc:date>2016-10-19T16:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: convert 3D solid to 3D faces with LSP program.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6632520#M127599</link>
      <description>&lt;P&gt;Thanks for posting here&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/940934"&gt;@marko_ribar﻿&lt;/a&gt;&amp;nbsp;(and at TheSwamp). I was hoping I wasn't missing something with regards to the MESHSMOOTH command. Seems I was on the right path all along. Thanks for confirming I wasn't losing my mind. &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2016 17:34:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/6632520#M127599</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-10-19T17:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: convert 3D solid to 3D faces with LSP program.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/11786111#M127600</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking for a LISP to convert 3D solids to 3DFACEs. I cannot use CONTOSURFACE - MESHSMOOTH - EXPLODE because it doesn´t generate 3DFACEs but REGIONs. I need the 3DFACEs (including their INVISIBLE edges) to use them for a dinamic block. In particular, I want to get a dinamic window frame, with their WIDTH and HEIGHT adjustable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, if you know any LISP routine to get that, please, tell me. Thanks a lot in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;P.S. I attach an example DWG&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 00:44:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/11786111#M127600</guid>
      <dc:creator>curro1968</dc:creator>
      <dc:date>2023-02-28T00:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: convert 3D solid to 3D faces with LSP program.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/11795899#M127601</link>
      <description>&lt;P&gt;Generally speaking, if you get REGIONS up to 4 vertices, you can further EXPLODE it into LINES... Collect 4 different points, remove LINES and create 3DFACES like you wanted - making object stretchable... But I don't quite know why you need assistance, you could have imagined this already very fast...&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2023 12:33:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/11795899#M127601</guid>
      <dc:creator>marko_ribar</dc:creator>
      <dc:date>2023-03-03T12:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: convert 3D solid to 3D faces with LSP program.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/11796210#M127602</link>
      <description>&lt;P&gt;Yes, I knew that...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I needed it to get a 3DFACE surface stretcheable for a dinamic block. I need to explode nothing but making a clone from the 3D SOLID with 3DFACEs and erase the 3D SOLID after that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If a LISP routine could automatize that process it would be much faster and with no risk of orienting the 3DFACEs in bad mode&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's the Matter!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2023 14:39:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-3d-solid-to-3d-faces-with-lsp-program/m-p/11796210#M127602</guid>
      <dc:creator>curro1968</dc:creator>
      <dc:date>2023-03-03T14:39:53Z</dc:date>
    </item>
  </channel>
</rss>

