<?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: How to rotate set of objects along an axis in AutoCAD? in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925648#M133044</link>
    <description>&lt;P&gt;By the way, why this topic was created in this forum ??? This is not the first time you selected wrong forum.&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jul 2019 13:54:01 GMT</pubDate>
    <dc:creator>Alexander.Rivilis</dc:creator>
    <dc:date>2019-07-23T13:54:01Z</dc:date>
    <item>
      <title>How to rotate set of objects along an axis in AutoCAD?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925592#M133042</link>
      <description>&lt;P&gt;We are implementing an application, where we are drawing objects, representing a panel, which represents the columns of the wall. I need to rotate the set of objects (the columns) together on one axis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I achieve it?&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="FFOfWall.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/660233iA889CCBED209BC00/image-size/large?v=v2&amp;amp;px=999" role="button" title="FFOfWall.jpg" alt="FFOfWall.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Expected Result" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/660228i72174360CFAA9F25/image-size/large?v=v2&amp;amp;px=999" role="button" title="RotateColumnsofWall.jpg" alt="Expected Result" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Expected Result&lt;/span&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;I have the following code, but it's for rotating each objects.&lt;/P&gt;&lt;PRE&gt;            using (Transaction acTrans = dwgDb.TransactionManager.StartTransaction())
            {
                // Access drawing block table
                pBlockTbl = acTrans.GetObject(dwgDb.BlockTableId, OpenMode.ForWrite) as BlockTable;

                pBlockRef = (BlockReference)acTrans.GetObject(thePANBLKBlockReference, OpenMode.ForWrite);
                pBlockRef.ColorIndex = colorIndex;

                Point3d tempPoint = pBlockRef.Position;

                Matrix3d curUCSMatrix = acDoc.Editor.CurrentUserCoordinateSystem;
                CoordinateSystem3d curUCS = curUCSMatrix.CoordinateSystem3d;

                // Rotate the polyline 45 degrees, around the Z-axis of the current UCS
                pBlockRef.TransformBy(Matrix3d.Rotation(0.7854,
                                                     curUCS.Yaxis,
                                                     tempPoint)); 


                acTrans.Commit();
            }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 13:47:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925592#M133042</guid>
      <dc:creator>jlobo2</dc:creator>
      <dc:date>2019-07-23T13:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to rotate set of objects along an axis in AutoCAD?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925636#M133043</link>
      <description>&lt;P&gt;You have to set single tempPoint to the value of base point of rotation. It is not a Position of BlockReference in your case.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 13:50:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925636#M133043</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2019-07-23T13:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to rotate set of objects along an axis in AutoCAD?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925648#M133044</link>
      <description>&lt;P&gt;By the way, why this topic was created in this forum ??? This is not the first time you selected wrong forum.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 13:54:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925648#M133044</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2019-07-23T13:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to rotate set of objects along an axis in AutoCAD?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925658#M133045</link>
      <description>&lt;P&gt;Got the Output. Thank you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/481027"&gt;@Alexander.Rivilis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry about the forum. Which forum should I use for posting these questions?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 13:57:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925658#M133045</guid>
      <dc:creator>jlobo2</dc:creator>
      <dc:date>2019-07-23T13:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to rotate set of objects along an axis in AutoCAD?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925666#M133046</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1626012"&gt;@jlobo2&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Got the Output. Thank you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/481027"&gt;@Alexander.Rivilis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry about the forum. Which forum should I use for posting these questions?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You should posting such questions to .NET forum: &lt;A href="https://forums.autodesk.com/t5/net/bd-p/152" target="_blank"&gt;https://forums.autodesk.com/t5/net/bd-p/152&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 13:59:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925666#M133046</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2019-07-23T13:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to rotate set of objects along an axis in AutoCAD?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925669#M133047</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1626012"&gt;@jlobo2&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Got the Output. Thank you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/481027"&gt;@Alexander.Rivilis&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Problem was solved now?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 14:01:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925669#M133047</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2019-07-23T14:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to rotate set of objects along an axis in AutoCAD?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925679#M133048</link>
      <description>&lt;P&gt;Yes&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/481027"&gt;@Alexander.Rivilis&lt;/a&gt;&amp;nbsp; Thank You once again.&lt;/P&gt;&lt;P&gt;I will be mindful of posting such questions in the .NET forum henceforth.&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="RotationOP.jpg" style="width: 875px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/660242i0129BA14D28446EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="RotationOP.jpg" alt="RotationOP.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 14:04:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-rotate-set-of-objects-along-an-axis-in-autocad/m-p/8925679#M133048</guid>
      <dc:creator>jlobo2</dc:creator>
      <dc:date>2019-07-23T14:04:38Z</dc:date>
    </item>
  </channel>
</rss>

