<?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: Best way of creating a 2D model from a 3D model. in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10893420#M64017</link>
    <description>I did. Apologies I should've explained more clearly the drawing contains a range of elements.</description>
    <pubDate>Thu, 20 Jan 2022 13:21:32 GMT</pubDate>
    <dc:creator>powerspinks</dc:creator>
    <dc:date>2022-01-20T13:21:32Z</dc:date>
    <item>
      <title>Best way of creating a 2D model from a 3D model.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10890425#M64009</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've looked at various ways of creating a 2D model from an existing 3D model. Here is what I've found:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FLATTEN - Works but its a bit clunky. For example the model has a bunch of 2D splines drawn in 3D space. Flatten squashes them to be rather crinkly rather than smooth. See example below (Spline flattened on left and original 3D version on the right).&amp;nbsp; Is there something I can do to solve this? Otherwise this method works quite well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FLATSHOT - Seems to only flatten Solids. Am I doing it wrong? Very little of the drawing is made of solids. SOLPROF seems to be the same.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried plotting to &lt;A href="https://www.cadlinecommunity.co.uk/hc/en-us/articles/201871791-Convert-3D-Model-Drawing-to-2D-Drawing-AutoCAD" target="_blank" rel="noopener"&gt;DXB then importing using DXBIN&lt;/A&gt; but the monochrome format is very limiting. Also I'd like to keep the drawing elements as their relevant types (splines, Plines etc...) rather than a load of Lines. Plus I had trouble exporting them at scale.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jan 2022 12:57:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10890425#M64009</guid>
      <dc:creator>powerspinks</dc:creator>
      <dc:date>2022-01-19T12:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: Best way of creating a 2D model from a 3D model.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10890723#M64010</link>
      <description>&lt;P&gt;I got something for you :&lt;/P&gt;
&lt;P&gt;take the objects and move them by this method.&lt;/P&gt;
&lt;P&gt;Base point : 0,0,0&lt;/P&gt;
&lt;P&gt;Ending point : 0,0,1e99&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Press ENTER to send the command MOVE back in action.&lt;/P&gt;
&lt;P&gt;Select P (as Previous) for the last objects being in the stratosphere (z= at least 1e99) and bring them back on earth with :&lt;/P&gt;
&lt;P&gt;Base point : 0,0,1e99&lt;/P&gt;
&lt;P&gt;Ending point : 0,0,0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Done it is correctly flatten. Works good on many objects and is an official method&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I even put that in a button. (not LT)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;^C^C(defun c:flatit()(setq sel(ssget))(command "_move" sel "" "0,0,0" "0,0,1e99" "_move" "_P" "" "0,0,0" "0,0,-1e99")(princ))(c:flatit)  &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;once used this button, you can send the FLATIT command in a drawing...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Edit :&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Look &lt;A href="https://knowledge.autodesk.com/support/autocad/learn-explore/caas/sfdcarticles/sfdcarticles/how-to-flatten-a-drawing-in-autocad.html" target="_blank" rel="noopener"&gt;here&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jan 2022 14:49:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10890723#M64010</guid>
      <dc:creator>tramber</dc:creator>
      <dc:date>2022-01-19T14:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Best way of creating a 2D model from a 3D model.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10891020#M64011</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11905869"&gt;@powerspinks&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11905869"&gt;@powerspinks&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've looked at various ways of creating a 2D model from an existing 3D model. ...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Try using the VIEWBASE command - link below.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;A href="https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2021/ENU/AutoCAD-Core/files/GUID-E0F79E2F-8838-4470-B8D0-8626343A22D2-htm.html" target="_blank" rel="noopener"&gt;VIEWBASE (Command) &lt;/A&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And if you want the geometry in 2D, look at what &lt;A href="http://www.cadforum.cz" target="_blank"&gt;www.cadforum.cz&lt;/A&gt;&amp;nbsp; says:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.cadforum.cz/en/how-to-explode-a-viewbase-generated-from-a-3d-model-tip12569" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;How to Explode a ViewBase generated from a 3D model?&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;"The standard command EXPLODE does not work on the objects of the type "Drawing View". But you can export the whole layout to a separate DWG drawing file (with the command &lt;STRONG&gt;&lt;A href="https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2021/ENU/AutoCAD-Core/files/GUID-8A07D165-559E-4DF2-B2A9-42BD6AE2DB70-htm.html" target="_blank" rel="noopener"&gt;EXPORTLAYOUT&lt;/A&gt;&lt;/STRONG&gt;). In this file, the individual views are now just plain block references (e.g. "CustomObjectsInViewport7_0") - these blocks can be exploded to simple entities like Line, Arc, etc. and you can edit this geometry. Of course it is no more associative (unlike the Drawing view) with the original 3D model."&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jan 2022 16:15:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10891020#M64011</guid>
      <dc:creator>Valentin_CAD</dc:creator>
      <dc:date>2022-01-19T16:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Best way of creating a 2D model from a 3D model.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10891228#M64012</link>
      <description>&lt;P&gt;Thanks. VIEWBASE is incredible. Whilst it gives me good 2D projections once I finish the command all it leaves are projections of the 3D solids. Not sure why that is.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For ref we're trying to make 2D models so we don't have to send the client our 3D models (2D will be sufficient for their needs and we don't want to give out our 3D models if possible).&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jan 2022 17:34:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10891228#M64012</guid>
      <dc:creator>powerspinks</dc:creator>
      <dc:date>2022-01-19T17:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Best way of creating a 2D model from a 3D model.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10891233#M64013</link>
      <description>&lt;P&gt;Thanks. Unfortunately that LISP seems to scatter all of the elements of my drawing.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jan 2022 17:35:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10891233#M64013</guid>
      <dc:creator>powerspinks</dc:creator>
      <dc:date>2022-01-19T17:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Best way of creating a 2D model from a 3D model.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10891244#M64014</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11905869"&gt;@powerspinks&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For 2D, just apply the second portion of my comment - regarding&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;A href="https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2021/ENU/AutoCAD-Core/files/GUID-8A07D165-559E-4DF2-B2A9-42BD6AE2DB70-htm.html?_ga=2.136584309.477301386.1642501726-373256116.1641393974" target="_blank" rel="noopener nofollow noreferrer"&gt;EXPORTLAYOUT&lt;/A&gt;.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jan 2022 17:38:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10891244#M64014</guid>
      <dc:creator>Valentin_CAD</dc:creator>
      <dc:date>2022-01-19T17:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Best way of creating a 2D model from a 3D model.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10892927#M64015</link>
      <description>&lt;P&gt;You showed a spline...&lt;/P&gt;
&lt;P&gt;this is why i sent you this solution.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 09:34:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10892927#M64015</guid>
      <dc:creator>tramber</dc:creator>
      <dc:date>2022-01-20T09:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: Best way of creating a 2D model from a 3D model.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10893196#M64016</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11905869"&gt;@powerspinks&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FLATTEN - Works but its a bit clunky. ...&amp;nbsp; Is there something I can do to solve this? Otherwise this method works quite well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you are asked&amp;nbsp; "Remove hidden Lines?" (while the flatten command), choose NO. This will improve the quality (the smoothness) of the resulting Polyline drastically.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have obviously a project which not only includes Surfaces, Solids, Meshes, 3DFaces and other geometry which define a volume or at least Faces,. Also splines (and perhaps other Wire geometry, we don't know your model) are included. Therefore the Flatten command seems for me the best choice to get the desired result.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 11:41:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10893196#M64016</guid>
      <dc:creator>j.palmeL29YX</dc:creator>
      <dc:date>2022-01-20T11:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: Best way of creating a 2D model from a 3D model.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10893420#M64017</link>
      <description>I did. Apologies I should've explained more clearly the drawing contains a range of elements.</description>
      <pubDate>Thu, 20 Jan 2022 13:21:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10893420#M64017</guid>
      <dc:creator>powerspinks</dc:creator>
      <dc:date>2022-01-20T13:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Best way of creating a 2D model from a 3D model.</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10893422#M64018</link>
      <description>Thanks. I think you're right. Its not ideal but it appears to be the best under the circumstances.</description>
      <pubDate>Thu, 20 Jan 2022 13:22:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/best-way-of-creating-a-2d-model-from-a-3d-model/m-p/10893422#M64018</guid>
      <dc:creator>powerspinks</dc:creator>
      <dc:date>2022-01-20T13:22:17Z</dc:date>
    </item>
  </channel>
</rss>

