<?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: Why do items set to export as OBJ export as low resolution triangular meshes? in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13406968#M2626</link>
    <description>&lt;P&gt;It looks like the answer is actually much simpler. It seems the entire obj exporter is a lie. I did more tests and no matter what I exported or what options I choose every file came out the same. A benchy with all the dials maxed out exports exactly the same as a benchy with the dials minimized or the options set to high or set to low or brep. None of the options mean anything.&lt;/P&gt;</description>
    <pubDate>Thu, 03 Apr 2025 14:37:34 GMT</pubDate>
    <dc:creator>christopher.pepin</dc:creator>
    <dc:date>2025-04-03T14:37:34Z</dc:date>
    <item>
      <title>Why do items set to export as OBJ export as low resolution triangular meshes?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13402999#M2621</link>
      <description>&lt;P&gt;My understanding is that OBJ files are capable of storing actual curved faces instead of having to resort to an ever increasing number of triangles. When you open the options when exporting to OBJ your resolution options are [low medium high custom BREP]. This would seem to imply that if you choose BREP Inventor should export the actual faces but in reality it doesn't seem to do that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example I created a simple cylinder 1 in wide and exported it as an OBJ using both the BREP and Low resolution options. When opened in Code both files are identical save for the metadata referring to the name of the&amp;nbsp; texture file. Absolutely no attempt to save any of the surfaces as actual surfaces seems to be made.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can only attach the two examples but I actually exported in every resolution and none of the resulting files varied. I tried exporting a simple cube, which the documentation at&amp;nbsp;&lt;A href="https://www.martinreddy.net/gfx/3d/OBJ.spec" target="_blank"&gt;https://www.martinreddy.net/gfx/3d/OBJ.spec&lt;/A&gt;&amp;nbsp;even uses as one of the things possible with OBJs, and it still turns into triangles for no apparent reason.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 22:48:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13402999#M2621</guid>
      <dc:creator>christopher.pepin</dc:creator>
      <dc:date>2025-04-01T22:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Why do items set to export as OBJ export as low resolution triangular meshes?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13403011#M2622</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;Where do you get your assumption that OBJ format represents curves?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://en.wikipedia.org/wiki/Wavefront_.obj_file" target="_blank"&gt;https://en.wikipedia.org/wiki/Wavefront_.obj_file&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 23:05:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13403011#M2622</guid>
      <dc:creator>kacper.suchomski</dc:creator>
      <dc:date>2025-04-01T23:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Why do items set to export as OBJ export as low resolution triangular meshes?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13403227#M2623</link>
      <description>&lt;P&gt;It says so right in the Wikipedia article you linked.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;Face elements&lt;P&gt;Faces are defined using lists of vertex, texture and normal indices in the format vertex_index/texture_index/normal_index for which each index starts at 1 and increases corresponding to the order in which the referenced element was defined. Polygons such as quadrilaterals can be defined by using more than three indices.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;OBJ files also support free-form geometry which use curves and surfaces to define objects, such as &lt;A title="NURBS" href="https://en.wikipedia.org/wiki/NURBS" target="_blank" rel="noopener"&gt;NURBS&lt;/A&gt; surfaces.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The reference I linked bears that out as well and even gives specific examples, including an example of how a cube should be represented as six full faces, which is what a brep version of a cube should translate to.&lt;/P&gt;&lt;PRE&gt;2.      Cube

This is a cube that measures two units on each side. Each vertex is
shared by three different faces.

    v 0.000000 2.000000 2.000000
    v 0.000000 0.000000 2.000000
    v 2.000000 0.000000 2.000000
    v 2.000000 2.000000 2.000000
    v 0.000000 2.000000 0.000000
    v 0.000000 0.000000 0.000000
    v 2.000000 0.000000 0.000000
    v 2.000000 2.000000 0.000000
    f 1 2 3 4
    f 8 7 6 5
    f 4 3 7 8
    f 5 1 4 8
    f 5 6 2 1
    f 2 6 7 3&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 02:03:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13403227#M2623</guid>
      <dc:creator>christopher.pepin</dc:creator>
      <dc:date>2025-04-02T02:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Why do items set to export as OBJ export as low resolution triangular meshes?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13403367#M2624</link>
      <description>&lt;P&gt;Unfortunately, I think the answer is in the Help file (&lt;A href="https://help.autodesk.com/view/INVNTOR/2025/ENU/?guid=GUID-68FCAD0E-93BD-4D90-B9FE-9CF82AA4E64D" target="_blank" rel="noopener"&gt;https://help.autodesk.com/view/INVNTOR/2025/ENU/?guid=GUID-68FCAD0E-93BD-4D90-B9FE-9CF82AA4E64D&lt;/A&gt;).&amp;nbsp; It looks like you can only export OBJs as triangular meshes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've often wondered why OBJ's were only triangular meshes from Inventor.&amp;nbsp; Thanks for helping me understand why.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe the BREP export option could be renamed - or at least changed to "&lt;STRONG&gt;Brep (Mesh only)&lt;/STRONG&gt;"&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pcrawley_2-1743565433516.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1484590i99A9F4698C5D54C0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pcrawley_2-1743565433516.png" alt="pcrawley_2-1743565433516.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the Help file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resolution&lt;/EM&gt; &lt;EM&gt;Controls resolution to use for exporting the model. Sets preset percentage values for sliders in options that control tessellation for the exported file.&lt;/EM&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;EM&gt;High - Parameters use the high preset percentage values. For Surface Deviation, Max Edge Length, or Aspect Ratio, selection clears if values change.&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;Medium - Parameters use the medium preset percentage values.&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;Low - Parameters use the low preset percentage values.&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;Custom - Specifies user-defined values.&lt;/EM&gt;&lt;DIV class=""&gt;&lt;EM&gt;&lt;SPAN class=""&gt;Note:&lt;/SPAN&gt;&amp;nbsp;For the above, a tolerance setting that is too tight can result in excessive facets and depletion of memory. In this case, the operation can fail.&lt;/EM&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;&lt;EM&gt;BREP&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;EM&gt; (default) - Outputs a boundary representation &lt;/EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;&lt;EM&gt;made up of faces, edges, and vertices.&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;EM&gt;Surface Deviation&lt;/EM&gt; &lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Controls the maximum distance between the facet edges and the surface edges.&lt;/FONT&gt;&lt;/STRONG&gt; Specifies the surface deviation parameter to use for tessellation. If you adjust the slider, the resolution changes to Custom.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Normal Deviation&lt;/EM&gt; &lt;EM&gt;Controls the maximum angle between the normal vectors of the facets. Specifies the normal deviation parameter &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;to use for tessellation&lt;/FONT&gt;&lt;/STRONG&gt;. If you adjust the slider, the resolution changes to Custom.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Max Edge Length&lt;/EM&gt; &lt;EM&gt;Defines the maximum distance between &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;the grid lines that are placed on the face during the tessellation process&lt;/FONT&gt;&lt;/STRONG&gt;. Specifies the maximum edge length parameter to use for tessellation. If you adjust the slider, the resolution changes to Custom.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Aspect Ratio&lt;/EM&gt; &lt;EM&gt;Controls the &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ratio between the height and width of the facets&lt;/STRONG&gt;&lt;/FONT&gt;. Specifies the aspect ratio parameter to use for tessellation. If you adjust the slider, the resolution changes to Custom.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 03:47:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13403367#M2624</guid>
      <dc:creator>pcrawley</dc:creator>
      <dc:date>2025-04-02T03:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: Why do items set to export as OBJ export as low resolution triangular meshes?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13404796#M2625</link>
      <description>&lt;P&gt;That doesn't really explain why a cube gets needlessly faceted when exported. It should be able to export as a set of eight vertexes, twelve edges and six faces and the help file would suggest that selecting BREP should do that but it doesn't. It still needlessly facets it. If even flat faces get split into triangles how is it any different than the other settings. At that point it is just a custom resolution option with undefined parameters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It also doesn't explain why the three resolutions settings come out the same with my cylinder. Like I said the files are byte for byte identical. They aren't similar, they are the same. Selecting High resolution did not produce a mesh with any higher resolution than the Low setting and it is not like the mesh it produced was already a high resolution mesh. I don't have access to my laptop today so I can't test any other files but even with just the simple cylinder, if what it output was the highest resolution it can achieve then it is in a pretty sorry state as there was still visible faceting from a distance.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 16:29:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13404796#M2625</guid>
      <dc:creator>christopher.pepin</dc:creator>
      <dc:date>2025-04-02T16:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Why do items set to export as OBJ export as low resolution triangular meshes?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13406968#M2626</link>
      <description>&lt;P&gt;It looks like the answer is actually much simpler. It seems the entire obj exporter is a lie. I did more tests and no matter what I exported or what options I choose every file came out the same. A benchy with all the dials maxed out exports exactly the same as a benchy with the dials minimized or the options set to high or set to low or brep. None of the options mean anything.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 14:37:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13406968#M2626</guid>
      <dc:creator>christopher.pepin</dc:creator>
      <dc:date>2025-04-03T14:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Why do items set to export as OBJ export as low resolution triangular meshes?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13407049#M2627</link>
      <description>&lt;P&gt;Is there anything stopping me from exporting to stl instead of obj?&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 14:57:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13407049#M2627</guid>
      <dc:creator>kacper.suchomski</dc:creator>
      <dc:date>2025-04-03T14:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: Why do items set to export as OBJ export as low resolution triangular meshes?</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13407162#M2628</link>
      <description>&lt;P&gt;It seems to me the only reason to even consider exporting as an obj at this stage is that the obj file does still add a mtl file with color data for the part. If you don't need color data it appears to simply be a worse version of the stl export. It is very disappointing because true objs have a lot of potential.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 15:43:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/why-do-items-set-to-export-as-obj-export-as-low-resolution/m-p/13407162#M2628</guid>
      <dc:creator>christopher.pepin</dc:creator>
      <dc:date>2025-04-03T15:43:08Z</dc:date>
    </item>
  </channel>
</rss>

