<?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: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363102#M57905</link>
    <description>&lt;P&gt;place 2 planes from your ref(s), so you have 2 planes on same location but not attached on each other;&lt;BR /&gt;Make you sketch on one plane, attached other parts and stuf to the other plane, Hide the sketch plane for the user;&lt;BR /&gt;so if they selected the visibe plane and execute the flip command, the sketch is unchanged, because it attached to an other plane.&lt;BR /&gt;Thanks to accept work arround.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Nov 2023 15:38:04 GMT</pubDate>
    <dc:creator>robbeRtek</dc:creator>
    <dc:date>2023-11-08T15:38:04Z</dc:date>
    <item>
      <title>'Two-Point-Center' Rectangle sketch changes in unpredictable manner on Flip Normal of Sketch WorkPlane</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/11676654#M57900</link>
      <description>&lt;P&gt;Recently I've discovered that flipping WorkPlane normal of the sketch containing Two-Point-Center-Rectangle changes it in unpredictable manner.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steps to reproduce:&lt;BR /&gt;1. Create new IPT&lt;BR /&gt;2. Create three new user WorkPlanes (each at some offset from each of Origin WorkPlanes)&lt;BR /&gt;3. Make new user WorkAxis as Intersection of the two user WorkPlanes (turn off visibility for those two WorkPlanes)&lt;BR /&gt;4. Create new Sketch on the only visible user Workplane&lt;BR /&gt;5. Make sure Origin Point projection was created (if no create it manually)&lt;BR /&gt;6. Create new (2nd) sketch Point as projection of the user WorkAxis&lt;BR /&gt;7. Create Two-Point-Center-Sketch using the Origin-Projection-Sketch-Point as Center-Point and 2nd sketch Point as Angle-Point&lt;BR /&gt;8. Make sure the sketch is fully constrained and close it&lt;BR /&gt;9. Pick Sketch WorkPlane (that same which is the only visible one) and Flip its normal.&lt;BR /&gt;Witness disappearing all/some of the sketch Lines that form the rectangle.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To get more understanding of what happens with sketch I wrote some iLogic code, which I run before and after&amp;nbsp;WorkPlane flipping:&amp;nbsp;&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;Dim oPD As PartDocument = ThisDoc.Document
Dim oCD As ComponentDefinition = oPD.ComponentDefinition
Dim oSk As PlanarSketch = oCD.Sketches(1)
logger.info("ConstraintStatus = " &amp;amp; [Enum].GetName(GetType(ConstraintStatusEnum), oSk.ConstraintStatus))
logger.info("SketchLines QTY = " &amp;amp; oSk.SketchLines.count)

Dim dLengthTot As Double
For Each oSL in oSk.SketchLines
	dLengthTot += oSL.Length
Next
logger.info("Total Lines Length = " &amp;amp; dLengthTot)&lt;/LI-CODE&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It shows that all lines are kept but their lengths changes (some cases lines even got zero length).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'm missing?&lt;/P&gt;&lt;P&gt;Can I bulletproof my sketch to have it unchanged after Flip Normal command execution?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS: I can reproduce this issue in Inventor 2023.2 (and all earlier versions I've tested so far).&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2023 06:27:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/11676654#M57900</guid>
      <dc:creator>Maxim-CADman77</dc:creator>
      <dc:date>2023-11-09T06:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12357399#M57901</link>
      <description>&lt;P&gt;More then 150 views and no replies within almost ten months ...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I'm attaching the Inv21* sample where all sketch-lines got zero lengths on Sketch WorkPlane Normal Flip (the rule from the 1st post is embedded).&lt;BR /&gt;...and sketch gets fixed on second Flip Normal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/486618"&gt;@johnsonshiue&lt;/a&gt;&amp;nbsp;is now have enough data to comment..&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PS:&lt;BR /&gt;The issue can also be reproducible in most recent Inventor 2024.2.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;PPS:&lt;BR /&gt;&lt;STRIKE&gt;It is probably worth to move this thread to general Inventor discussion board.&lt;/STRIKE&gt;&lt;BR /&gt;UPDATE: Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 16:38:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12357399#M57901</guid>
      <dc:creator>Maxim-CADman77</dc:creator>
      <dc:date>2023-11-08T16:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12362068#M57902</link>
      <description>&lt;P&gt;Unlike 'Two-Point-Center' the 'Two-Point' Rectangle drawn by same two points seems unchanged (as expected) after Sketch WorkPlane Flip Normal.&lt;BR /&gt;Which means the issue is a defect of 'Two-Point-Center' Rectangle command.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 07:59:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12362068#M57902</guid>
      <dc:creator>Maxim-CADman77</dc:creator>
      <dc:date>2023-11-08T07:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363003#M57903</link>
      <description>&lt;P&gt;"Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/572109"&gt;@Maxim-CADman77&lt;/a&gt;&amp;nbsp;, based on my experience: When a plane flips seemingly randomly, it is constructed based on one or more axes or lines. If the vector from the axis or line changes to the opposite direction, both the front and back sides of the plane flip. This effect propagates to any attached or associated planes, necessitating a model rebuild to ensure that these planes maintain consistency and do not act independently when vectors change direction. If you need to flip the normal of a plane using code, you should also adjust the PlanarSketch.NaturalAxisDirection:&lt;/P&gt;&lt;PRE&gt;' Change the plane&lt;BR /&gt;If ... Then&lt;BR /&gt;Dim plane As Workplane = ...&lt;BR /&gt;plane.FlipNormal()&lt;BR /&gt;Dim sk As PlanarSketch = ...&lt;BR /&gt;sk.NaturalAxisDirection = Not NaturalAxisDirection&lt;BR /&gt;End If&lt;BR /&gt;' I anticipate that errors may occur between these two actions, so consider suppressing warnings or deferring updates.&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks to accept solution&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 15:10:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363003#M57903</guid>
      <dc:creator>robbeRtek</dc:creator>
      <dc:date>2023-11-08T15:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363020#M57904</link>
      <description>&lt;P&gt;Thank you but Flipping WorkPlane Normal programmatically is not applicable in my case.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 15:15:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363020#M57904</guid>
      <dc:creator>Maxim-CADman77</dc:creator>
      <dc:date>2023-11-08T15:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363102#M57905</link>
      <description>&lt;P&gt;place 2 planes from your ref(s), so you have 2 planes on same location but not attached on each other;&lt;BR /&gt;Make you sketch on one plane, attached other parts and stuf to the other plane, Hide the sketch plane for the user;&lt;BR /&gt;so if they selected the visibe plane and execute the flip command, the sketch is unchanged, because it attached to an other plane.&lt;BR /&gt;Thanks to accept work arround.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 15:38:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363102#M57905</guid>
      <dc:creator>robbeRtek</dc:creator>
      <dc:date>2023-11-08T15:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363188#M57906</link>
      <description>&lt;P&gt;The workaround you proposed sounds a bit too complex.&lt;BR /&gt;Anyway thank you for your time but I'd rather prefer to get some official comments from Autodesk staff (hopefully accept the defect and get it fixed in one of the next updates).&lt;BR /&gt;IMHO, if Two-Point Rectangle survives the Flip Normal then there should be no reason for&amp;nbsp;Two-Point-Center to break.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 16:01:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363188#M57906</guid>
      <dc:creator>Maxim-CADman77</dc:creator>
      <dc:date>2023-11-08T16:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363321#M57907</link>
      <description>&lt;P&gt;I 've test with you're part,&lt;/P&gt;&lt;P&gt;I cann't rebuild the issue, not in an new part, not in yours&lt;BR /&gt;if I remove the projection from the axis, and add (+constain) this again, there is no issue any more,...&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="robbeRtek_1-1699461624941.png" style="width: 338px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290228i40680A8E09130941/image-dimensions/338x188?v=v2" width="338" height="188" role="button" title="robbeRtek_1-1699461624941.png" alt="robbeRtek_1-1699461624941.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="robbeRtek_2-1699461648561.png" style="width: 376px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290229i581D783681542933/image-dimensions/376x220?v=v2" width="376" height="220" role="button" title="robbeRtek_2-1699461648561.png" alt="robbeRtek_2-1699461648561.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you can rebuild the issues over and over, you can try it on an other inventor build.&lt;/P&gt;&lt;P&gt;mine build :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="robbeRtek_0-1699461591735.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290225iA6F66BB4E1833BEE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="robbeRtek_0-1699461591735.png" alt="robbeRtek_0-1699461591735.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I hope this is the solution.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 16:42:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363321#M57907</guid>
      <dc:creator>robbeRtek</dc:creator>
      <dc:date>2023-11-08T16:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363368#M57908</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="robbeRtek_0-1699462608478.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290234i217BBAA4F12EB9D2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="robbeRtek_0-1699462608478.png" alt="robbeRtek_0-1699462608478.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="robbeRtek_2-1699462669291.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290236iB476678601AA1398/image-size/medium?v=v2&amp;amp;px=400" role="button" title="robbeRtek_2-1699462669291.png" alt="robbeRtek_2-1699462669291.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="robbeRtek_3-1699462720561.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290239i67E377BE7D2F462B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="robbeRtek_3-1699462720561.png" alt="robbeRtek_3-1699462720561.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;No issues&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 16:59:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363368#M57908</guid>
      <dc:creator>robbeRtek</dc:creator>
      <dc:date>2023-11-08T16:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363380#M57909</link>
      <description>&lt;P&gt;2023.2.1 seems half year obsolete, right? (I always update Inventors* ASAP and thus have 2023.4.1)&lt;/P&gt;&lt;P&gt;So after I've deleted the rectangle ang axis projection and recreate them the situation changed a bit but it is still far from expected (see the attached IPT):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MaximCADman77_0-1699464023863.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290266iF108676444F19C0E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MaximCADman77_0-1699464023863.png" alt="MaximCADman77_0-1699464023863.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;I do have several releases installed because I need them to test Inventor-AddIns I'm developing.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 17:20:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363380#M57909</guid>
      <dc:creator>Maxim-CADman77</dc:creator>
      <dc:date>2023-11-08T17:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363466#M57910</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="robbeRtek_0-1699463332631.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290246i5901B17FA162C3E6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="robbeRtek_0-1699463332631.png" alt="robbeRtek_0-1699463332631.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="robbeRtek_1-1699463359203.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290247i4A138D821148F9EE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="robbeRtek_1-1699463359203.png" alt="robbeRtek_1-1699463359203.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="robbeRtek_2-1699463399136.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290250i48844A3E6E411091/image-size/medium?v=v2&amp;amp;px=400" role="button" title="robbeRtek_2-1699463399136.png" alt="robbeRtek_2-1699463399136.png" /&gt;&lt;/span&gt;&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="robbeRtek_3-1699463489158.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290252iE61A240006EDF49A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="robbeRtek_3-1699463489158.png" alt="robbeRtek_3-1699463489158.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="robbeRtek_4-1699463506680.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290253i0CD56F3E677109C1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="robbeRtek_4-1699463506680.png" alt="robbeRtek_4-1699463506680.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="robbeRtek_5-1699463552785.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1290254i52F85AF6CB5047BD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="robbeRtek_5-1699463552785.png" alt="robbeRtek_5-1699463552785.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;in 2024 there is no problem, tommorw i try your build.&lt;/P&gt;&lt;P&gt;We work not with the most recent versions, because they can have som issues, if you wait longer, they are mostly solved.&lt;BR /&gt;We draw still in 2019, for us, is this the best version. (the align detail vieuws, takes model center and not vieuw center (like all recent versions), the copy design tool, works for most tasks; in new version, the copy design tool breaks or not update&amp;nbsp; (all) projected sketch refs) through complex adaptive designs,...&lt;BR /&gt;In near feature we go to 2023, now we are testing our own copy design tool&amp;nbsp; that update all refs no matter what kind of ref.&lt;BR /&gt;regards&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 17:25:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363466#M57910</guid>
      <dc:creator>robbeRtek</dc:creator>
      <dc:date>2023-11-08T17:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363654#M57911</link>
      <description>&lt;P&gt;I've just reproduced the issue within Inventor 2024.2 by creating new IPT "from the scratch" (following the sequence I've posted in first post). See the IPT attached.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6943923"&gt;@robbeRtek&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Could you, please, post any of IPTs you've created trying to reproduce the issue?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS:&lt;BR /&gt;Does Inventor development team know about the Copy Design issue you've suffer? What is a defect-code of the issue?&lt;BR /&gt;I see there were just some minor Copy-Design-related issue (INVGEN-61548) fixed in &lt;A href="https://help.autodesk.com/view/INVNTOR/2023/ENU/?guid=Inventor_ReleaseNotes_updates_2023_1_fixed_bugs_july_html" target="_blank" rel="noopener"&gt;Update 2023.1.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 18:39:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12363654#M57911</guid>
      <dc:creator>Maxim-CADman77</dc:creator>
      <dc:date>2023-11-08T18:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12364350#M57912</link>
      <description>&lt;P&gt;Hi Folks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess this has something to do with the project edge source with respect to the default sketch orientation. I don't have a good solution here. I am wondering if setting a UCS would be a better choice here. You may rotate the UCS (as oppose to flip the normal). The sketch coordinate on UCS plane should be always aligned to the UCS axes.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 23:55:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12364350#M57912</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2023-11-08T23:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12364763#M57913</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/486618"&gt;@johnsonshiue&lt;/a&gt;&amp;nbsp;any chances development team to look at this?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2023 05:52:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12364763#M57913</guid>
      <dc:creator>Maxim-CADman77</dc:creator>
      <dc:date>2023-11-09T05:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: 'Two-Point-Center' Rectangle sketch collapses on Sketch WorkPlane Flip Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12366943#M57914</link>
      <description>&lt;P&gt;Hi Maxim,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe this issue was investigated in the past and there was no good solution found. Please feel free to escalate it with Autodesk Product Support. They can help report it as a defect and follow up with the project team.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2023 20:53:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/two-point-center-rectangle-sketch-changes-in-unpredictable/m-p/12366943#M57914</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2023-11-09T20:53:13Z</dc:date>
    </item>
  </channel>
</rss>

