<?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 Create Sketch From Extrude Feature in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-sketch-from-extrude-feature/m-p/9497010#M110478</link>
    <description>&lt;P&gt;While create the Extrude feature from Sketch entities, some of the closed area does not convert as Solid during the Extrude process.So i need to identify all the entities are converted as solid or not.&lt;/P&gt;&lt;P&gt;For this case, i need to create the sketch from Extrude feature. Since i need to compare the two sketch entities.&lt;/P&gt;&lt;P&gt;So kindly guide me how to create Sketch using Extrude feature?&lt;/P&gt;&lt;P&gt;Otherwise how to create the&amp;nbsp;&lt;SPAN&gt;profile shape by projecting a solid?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 06 May 2020 18:14:45 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-05-06T18:14:45Z</dc:date>
    <item>
      <title>Create Sketch From Extrude Feature</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-sketch-from-extrude-feature/m-p/9497010#M110478</link>
      <description>&lt;P&gt;While create the Extrude feature from Sketch entities, some of the closed area does not convert as Solid during the Extrude process.So i need to identify all the entities are converted as solid or not.&lt;/P&gt;&lt;P&gt;For this case, i need to create the sketch from Extrude feature. Since i need to compare the two sketch entities.&lt;/P&gt;&lt;P&gt;So kindly guide me how to create Sketch using Extrude feature?&lt;/P&gt;&lt;P&gt;Otherwise how to create the&amp;nbsp;&lt;SPAN&gt;profile shape by projecting a solid?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 18:14:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-sketch-from-extrude-feature/m-p/9497010#M110478</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-06T18:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Create Sketch From Extrude Feature</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-sketch-from-extrude-feature/m-p/9497116#M110480</link>
      <description>&lt;P&gt;Have you tried playing around with the Sketch.Profiles.AddForSolid() function's optional settings?&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Dim oPDoc As PartDocument = ThisApplication.ActiveDocument
Dim oPDef As PartComponentDefinition = oPDoc.ComponentDefinition
Dim oSketch As PlanarSketch = oPDef.Sketches.Item(1)
Dim oProfilePathSegments As ObjectCollection = ThisApplication.TransientObjects.CreateObjectCollection
For Each oProfileOption As Profile In oSketch.Profiles
	If oProfileOption.RegionProperties.Area = 56 Then
		oProfilePathSegments.Add(oProfileOption)
	End If
Next
Dim oProfile As Profile = oSketch.Profiles.AddForSolid(False,oProfilePathSegments)
Dim oExtFeats As ExtrudeFeatures = oPDef.Features.ExtrudeFeatures
Dim oExtDef As ExtrudeDefinition = oExtFeats.CreateExtrudeDefinition(oProfile,PartFeatureOperationEnum.kNewBodyOperation)
Dim oExtFeat As ExtrudeFeature = oPDef.Features.ExtrudeFeatures.Add(oExtDef)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 18:59:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-sketch-from-extrude-feature/m-p/9497116#M110480</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2020-05-06T18:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Create Sketch From Extrude Feature</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-sketch-from-extrude-feature/m-p/9501351#M110566</link>
      <description>&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;But i need to create sketch from Part or Extrude feature.&amp;nbsp;&lt;/P&gt;&lt;P&gt;(since i need to confirm whether all closed skecth profiles are converted as Part)&lt;/P&gt;&lt;P&gt;Is it possible?&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 09:20:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-sketch-from-extrude-feature/m-p/9501351#M110566</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-08T09:20:35Z</dc:date>
    </item>
  </channel>
</rss>

