<?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: make 3DFace in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13245357#M4550</link>
    <description>&lt;P&gt;Are there ever more than 3 edges?&amp;nbsp; If always only 3 or 4, and with the updated sample drawing in which endpoints meet, JOIN could be used to make a 3DPolyline, then 3DFACE used with the resulting vertices.&amp;nbsp; But if there could be more than 4 edges, more than one 3DFACE would be needed, so there would need to be some figuring out of which edges to use for which 3DFACE, and you would need to consider whether you want any Invisible edge(s), and if so, which one(s).&lt;/P&gt;</description>
    <pubDate>Mon, 06 Jan 2025 14:41:53 GMT</pubDate>
    <dc:creator>Kent1Cooper</dc:creator>
    <dc:date>2025-01-06T14:41:53Z</dc:date>
    <item>
      <title>make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13243396#M4543</link>
      <description>&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;How can we turn the clicked Closed area into a 3Dface?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks in advance to the helpful friend.&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>Sun, 05 Jan 2025 13:50:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13243396#M4543</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2025-01-05T13:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13243422#M4544</link>
      <description>&lt;P&gt;There is a difference in height&lt;BR /&gt;Can you elaborate?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="E.gif" style="width: 842px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1451226i65001925822ACA0B/image-size/large?v=v2&amp;amp;px=999" role="button" title="E.gif" alt="E.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jan 2025 12:38:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13243422#M4544</guid>
      <dc:creator>hosneyalaa</dc:creator>
      <dc:date>2025-01-05T12:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13243499#M4545</link>
      <description>&lt;P&gt;Yes. There is a height difference.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;This height will be used as the highest level. That is, a surface must be created according to the 3D length.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* I updated the attachment. The previous one was wrong.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jan 2025 13:51:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13243499#M4545</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2025-01-05T13:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13243584#M4546</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/537692"&gt;@k005&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TRY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;(defun c:Test (/  CUR ED EN I INT LIT PREV PTNEWLST SEL SLEN SS)
 
  (princ "\nSelect LINES objects to Convert 3DFACE : ")
  (setq ss (ssget '((0 . "LINE"))))
  
  (IF (= 3 (sslength ss))
       (PROGN
       (setq i (sslength ss)
        slen i)
       (while (not (minusp (setq i (1- i))))
         (setq en (ssname ss (fix i))
               ed (entget en)
               LIT (CONS (cdr (assoc  10 ed)) LIT)
               LIT (CONS (cdr (assoc  11 ed)) LIT)
               )
         )

       ;;;    komondormrex 
;**********************************************************************************************************************************************************
  
(defun remove_duplicates (_list / duplicateless_list)
	(while _list
		(if (not (equal (car (setq list_element (car _list))) (caar (setq _list (cdr _list)))))
			(setq duplicateless_list (append duplicateless_list (list list_element)))
		)
	)
)
(setq ptnewlst (remove_duplicates LIT))
;**********************************************************************************************************************************************************



 (entmake (list (cons  0 "3DFACE")
                 (cons  8 "00")
                 (cons 10 (CAR ptnewlst))
                 (cons 11 (CADR ptnewlst))
                 (cons 12 (CADDR ptnewlst))
                 (cons 13 (CADDDR ptnewlst))
                 (cons 62 256)
                 (cons 62 4)
                 (cons 70 0)))
       
       ))

       

  
  (princ)
  )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DD.gif" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1451255i217B1D990B9734DC/image-size/large?v=v2&amp;amp;px=999" role="button" title="DD.gif" alt="DD.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jan 2025 14:44:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13243584#M4546</guid>
      <dc:creator>hosneyalaa</dc:creator>
      <dc:date>2025-01-05T14:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13243719#M4547</link>
      <description>&lt;P&gt;Thank you very much for the answer.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;- Instead of selecting the lines, I want to click inside the closed area and perform this operation.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The closed area also meets at a Point (Z). Therefore, this area should be translated...&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jan 2025 16:32:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13243719#M4547</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2025-01-05T16:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13244148#M4548</link>
      <description>&lt;P&gt;You could pick a point but how do you find other objects ? You could use a ssget "F" with an expanding shape till it finds 3 items, a good time for you to have a go, you post a lot. Use (repeat 10 would be used to make a 10 sided object, using polar for each point into a list, note add last to list so its closed. Just keep changing the offset distance.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 02:07:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13244148#M4548</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-01-06T02:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13244507#M4549</link>
      <description>&lt;P&gt;I thought it should have a logic similar to the Area command for other objects.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;What do you mean by sharing too much? We are the explainers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 06:27:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13244507#M4549</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2025-01-06T06:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13245357#M4550</link>
      <description>&lt;P&gt;Are there ever more than 3 edges?&amp;nbsp; If always only 3 or 4, and with the updated sample drawing in which endpoints meet, JOIN could be used to make a 3DPolyline, then 3DFACE used with the resulting vertices.&amp;nbsp; But if there could be more than 4 edges, more than one 3DFACE would be needed, so there would need to be some figuring out of which edges to use for which 3DFACE, and you would need to consider whether you want any Invisible edge(s), and if so, which one(s).&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 14:41:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13245357#M4550</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2025-01-06T14:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13246210#M4551</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6591997"&gt;@hosneyalaa&lt;/a&gt;&amp;nbsp;FWIW, If you check for the existence of the points within your loop you can eliminate the remove duplicates sub.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(while (not (minusp (setq i (1- i))))
  (setq	en (ssname ss (fix i))
	ed (entget en)
  )
  (foreach dxf '(10 11) (or (member (setq p (cdr (assoc dxf ed))) lit) (setq lit (cons p lit))))
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 23:56:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13246210#M4551</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2025-01-06T23:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13247101#M4552</link>
      <description>&lt;P&gt;More than three... I'm actually going to use this to calculate the surface area of ​​a roof. I wanted&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I add another prefix. roof plan&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>Tue, 07 Jan 2025 10:38:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13247101#M4552</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2025-01-07T10:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13247905#M4553</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/537692"&gt;@k005&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could use master &lt;A href="http://www.theswamp.org/index.php?topic=9042.msg306340#msg306340" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;ElpanovEvgeniy's triangulate lisp&lt;/STRONG&gt;&lt;/A&gt; to place the 3dfaces. I've put two functions up top 'foo' which generates the TIN using a selection of lines and 'AAREA' which calculates the total area of selected 3d faces.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ronjonp_0-1736269609780.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1452009iD551D0F4BECBE1CA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ronjonp_0-1736269609780.png" alt="ronjonp_0-1736269609780.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 17:29:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13247905#M4553</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2025-01-07T17:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13247935#M4554</link>
      <description>&lt;P&gt;In one word, perfect. Thank you very much.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 17:27:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13247935#M4554</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2025-01-07T17:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13247948#M4555</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/537692"&gt;@k005&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;In one word, perfect. Thank you very much.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Glad to help! Although the majority of the credit goes to&amp;nbsp;ElpanovEvgeniy.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 17:32:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13247948#M4555</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2025-01-07T17:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13251037#M4556</link>
      <description>&lt;P&gt;Just a cooment I have a draw roofs function it uses Pface for each roof plane so could use all those points to work out surface area. Marko-ribar has a nice do roofs lisp that may be useful for drawing the roof in the 1st place. Do a google.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another issue is when looking at the Ronjonp image it may have an error in the roof shape, roofs are normally planes so the right side is made up of 2 - 3dfaces rather than a true plane answer which would be more 3dfaces.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SeaHaven_0-1736389653729.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1452705i80959E742265527D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SeaHaven_0-1736389653729.png" alt="SeaHaven_0-1736389653729.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 05:04:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13251037#M4556</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-01-09T05:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13251142#M4557</link>
      <description>&lt;P&gt;Yes, it is planar. But I use 3D face to find the actual value of Surface area - Coverage area. Otherwise, when we look at it as a plan, incorrect or incomplete results will appear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ribar? I'm hearing this for the first time. If you add the function I will test it.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 04:16:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13251142#M4557</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2025-01-09T04:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13251185#M4558</link>
      <description>&lt;P&gt;I do apoligise Marko-Ribar has some roof stuff so does Gilles Chanteau. Same I have a house drafting package that includes roofs.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 05:07:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13251185#M4558</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-01-09T05:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13251188#M4559</link>
      <description>&lt;P&gt;I understand Ok.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 05:10:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13251188#M4559</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2025-01-09T05:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13252217#M4560</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;Another issue is when looking at the Ronjonp image it may have an error in the roof shape, roofs are normally planes so the right side is made up of 2 - 3dfaces rather than a true plane answer which would be more 3dfaces.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SeaHaven_0-1736389653729.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1452705i80959E742265527D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SeaHaven_0-1736389653729.png" alt="SeaHaven_0-1736389653729.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This scenario was in the sample drawing and the triangulation is correct.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ronjonp_0-1736437649001.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1452945i490FEDD4764519D0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ronjonp_0-1736437649001.png" alt="ronjonp_0-1736437649001.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For Marko's ridge line code, it's &lt;A href="https://www.theswamp.org/index.php?topic=41837.msg619616#msg619616" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;HERE&lt;/STRONG&gt;&lt;/A&gt;. I don't know if this is the latest version because there are 20 pages in that thread.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 15:54:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13252217#M4560</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2025-01-09T15:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13253335#M4561</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&amp;nbsp;if the original line work is wrong then yes the 3dfaces will not be correct. We can only work with what we are given. Note having spent like 40 years playing with TIN's an improvement to a TIN is to always add breaklines.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 07:42:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13253335#M4561</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-01-10T07:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: make 3DFace</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13253509#M4562</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/537692"&gt;@k005&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note that if you have hipped roof like you/others presented in pictures, to get area of roof, you just have to divide area of object in floor plan with cosine of pitch angle...&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 09:32:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/make-3dface/m-p/13253509#M4562</guid>
      <dc:creator>marko_ribar</dc:creator>
      <dc:date>2025-01-10T09:32:33Z</dc:date>
    </item>
  </channel>
</rss>

