<?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: Bake rotation pivot runs extremely slow, any other options? in Maya Programming Forum</title>
    <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12068812#M4740</link>
    <description>&lt;P&gt;Hi, thanks for the quick response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To be honest, I expected it to function okay in batch mode, since afaik there's no actual user interaction, it's only adjusting attribute values of transform nodes (rotatePivot, scalePivot &amp;amp; translate).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For context, we run publish asset processes in the background in Maya batch, which does things like freeze transforms etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, I guess I need to go a bit lower into the code to find the actual cmds used. Thanks for the steer on that file, which I've found. I did try "whatIs&amp;nbsp;BakeCustomPivot" but it just came back with "Run Time Command".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually, looking at the code, I can see it does do other stuff, specifically with the orientation of the manipulators etc. so that does make sense now. I guess I just need to implement a subset of what it's doing, namely adjusting the pivot positions, translations etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;</description>
    <pubDate>Thu, 29 Jun 2023 10:32:19 GMT</pubDate>
    <dc:creator>tom_melson</dc:creator>
    <dc:date>2023-06-29T10:32:19Z</dc:date>
    <item>
      <title>Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10085736#M4730</link>
      <description>&lt;P&gt;In a couple of my Mel scripts I use BakeCustomPivot; to regenerate the rotation pivot on objects that have had their transform frozen, today I realized this command runs unacceptably slow on anything over 40,000 verts. Does know another way I can regenerate the x, y, z rotation of an object other than this command. Or, I've been trying to figure out a way to transfer that rotation pivot from one object to another so I can run it on an object with a single face, but I can't figure out how to get that working either. Any suggestions?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2021 02:02:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10085736#M4730</guid>
      <dc:creator>malcolm_341</dc:creator>
      <dc:date>2021-02-16T02:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10086353#M4731</link>
      <description>&lt;P&gt;Hi Malcolm,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is a bug in the -preserveGeometryPosition flag on the transform commands so I've opened an issue for this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MAYA-109930 -&amp;nbsp;Bake Pivot runs unacceptably slow on large meshes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, for workarounds.&lt;BR /&gt;&lt;BR /&gt;When baking/freezing a pivot the basic operation is to apply some transform and then apply a compensating transform to the geometry so it remains in the same place.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, for example, if I do something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) rotate a mesh by 90 in Z&lt;/P&gt;
&lt;P&gt;2) freeze rotation&lt;/P&gt;
&lt;P&gt;3) rotate -90 in Z&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I now have my geometry in the same place but my Z rotation is now -90 so I have baked the rotation change into the geometry.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, depending on your needs, you might be able to achieve the result your are after using freeze which doesn't have the performance issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, BakeCustomToolPivot is implemented as a Mel script that is in your Maya installation so you can open it and inspect how the command works which would be useful when trying to find a workaround.&lt;/P&gt;
&lt;P&gt;--&lt;/P&gt;
&lt;P&gt;Brent&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2021 10:02:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10086353#M4731</guid>
      <dc:creator>brentmc</dc:creator>
      <dc:date>2021-02-16T10:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10087631#M4732</link>
      <description>&lt;P&gt;Thanks a lot, I spent about 5 hours on this problem yesterday, after much failure I figured out a could duplicate a single face and bake pivot on that since it's only one face it's instant and then parent my mesh under that mesh and then un-rotate it using the parent. I'll report back if I can get this working.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2021 18:42:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10087631#M4732</guid>
      <dc:creator>malcolm_341</dc:creator>
      <dc:date>2021-02-16T18:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10089506#M4733</link>
      <description>&lt;P&gt;Hi Malcolm,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a little Python script that shows how to bake a rotation using freeze as I described before. This (combined with the logic in bakeCustomToolPivot) should hopefully be enough to workaround the bug in your scenario.&lt;BR /&gt;&lt;BR /&gt;It does the following 3 steps:&lt;BR /&gt;1) rotate the transform by the inverse rotation&lt;/P&gt;
&lt;P&gt;2) freeze the rotation&lt;/P&gt;
&lt;P&gt;3) rotate the transform by the desired rotation&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;# Bake rotation example using freeze
import math
from maya import cmds
from maya.api import OpenMaya as om

# This is the desired world-space rotation
rot = om.MEulerRotation(0, 0, math.radians(-90))

# Generate an inverse rotation
invRot = rot.inverse().reorder(om.MEulerRotation.kXYZ)

# Rotate the transform by the inverse rotation
cmds.rotate(math.degrees(invRot[0]), math.degrees(invRot[1]), math.degrees(invRot[2]), absolute=1, worldSpace=1, forceOrderXYZ=1)

# Freeze the rotation
cmds.makeIdentity(apply=1, rotate=1, preserveNormals=1)

# Rotate to the desired/final rotation
cmds.rotate(math.degrees(rot[0]), math.degrees(rot[1]), math.degrees(rot[2]), absolute=1, worldSpace=1, forceOrderXYZ=1)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;--&lt;/P&gt;
&lt;P&gt;Brent&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2021 10:50:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10089506#M4733</guid>
      <dc:creator>brentmc</dc:creator>
      <dc:date>2021-02-17T10:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10091031#M4734</link>
      <description>&lt;P&gt;Thanks for you reply, in my situation the transform has already been frozen at an arbitrary angle so I need to first regenerate the transform based on a single user face selection which is what I need the bake pivot for.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've found if you select a face and change the move tool to component you can capture the angle of the move tool and then feed that into the rotate pivot and then bake the pivot to effectively rebuild the frozen transform with no knowledge of the object's original rotation before freezing, because bake pivot runs so slow I need to write a hack to bake pivot on a different mesh and then apply the rotation back to my originally object. Pretty messy, but I got something working last night which I'll share here for reference once I test it a bit more.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2021 19:17:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10091031#M4734</guid>
      <dc:creator>malcolm_341</dc:creator>
      <dc:date>2021-02-17T19:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10091332#M4735</link>
      <description>&lt;P&gt;So here's my workaround, I'm basically tricking the system into running bakeCustomToolPivot 1 1; on a single face and then pasting that rotation information back to my object that has thousands of faces. This is a lot of code, maybe there's a simpler way to do, but it does get around the slowness bug. Thanks for your help Brent, it was your explanation of rotating the object freezing it and then rotating it back which led me to this solution. To use the script below select a single face and run it. It will magically regenerate transform based on that face and will avoid the slowness of the bake pivot bug.&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="markup"&gt;global proc m341_duplicateFace()
{
	string $selected_Faces[] = `ls -sl -fl`;
	toggleSelMode;
	toggleSelMode;
	selectMode -object;
	makeIdentity -apply true -t 1 -r 1 -s 1 -n 0 -pn 1;
	
	$selected_Obj_1 = `ls -sl`;
	duplicate -rr;
	$selected_Obj_2 = `ls -sl`;
	
	
	//Loop through array and swap names
	string $newComponentSel[] = {};
	for ($item in $selected_Faces)
	{
		string $comp = `match "\\..+" $item`;
		$newComponentSel[size($newComponentSel)] = ($selected_Obj_2[0] + $comp);
	}

	SelectFacetMask;
	select $newComponentSel;
	InvertSelection;
	Delete;
	toggleSelMode;
	toggleSelMode;
	selectMode -object;
	rename duplicated_1;
}

//Store first object and faces and pivot
string $userSelectedFace[] = `ls -sl`;
toggleSelMode;
toggleSelMode;
selectMode -object;
CenterPivot;
makeIdentity -apply true -t 1 -r 1 -s 1 -n 0 -pn 1;
MoveTool;
float $moveToolPOS[] = `manipMoveContext -q -position "Move"`;
string $userSelectedObj[] = `ls -sl`;

//Duplicate face and rebuild transform on new object
SelectFacetMask;
select $userSelectedFace;
m341_duplicateFace();
string $rotatorObj[] = `ls -sl`;
ConvertSelectionToFaces;
string $rotatorFace[] = `ls -sl`;

//Store rebuilt rotation and translation in variable for later
//Switch to move tool component mode
MoveTool;
manipMoveContext -edit -mode 10 Move;

//Get move tool location
float $locatorTargetPOS[] = `manipMoveContext -q -position "Move"`;
//Get move tool angle and convert radius to degrees
float $locatorTargetAngle[] = `manipMoveContext -q -orientAxes "Move"`;
$locatorTargetAngle[0] = rad_to_deg ($locatorTargetAngle[0]);
$locatorTargetAngle[1] = rad_to_deg ($locatorTargetAngle[1]);
$locatorTargetAngle[2] = rad_to_deg ($locatorTargetAngle[2]);

//Adjust rotate pivot so it aligns with average component selection from above
manipPivot -o $locatorTargetAngle[0] $locatorTargetAngle[1] $locatorTargetAngle[2];
toggleSelMode;
toggleSelMode;
selectMode -object;
bakeCustomToolPivot 1 1;

//Parent object under face with rebuilt transform
parent $userSelectedObj $rotatorObj;

//Unrotate parent face so child gets rotated back to zero correctly
select $rotatorObj;
rotate -os -fo 0 0 0;

//Freeze transform of object and unparent
select $userSelectedObj;
makeIdentity -apply true -t 1 -r 1 -s 1 -n 0 -pn 1;	
parent -w;
	
//Group for rotating
doGroup 0 1 1;
string $group[] = `ls -sl`;
xform -worldSpace -pivots $moveToolPOS[0] $moveToolPOS[1] $moveToolPOS[2];

//Rotate group back to original angle using variable from above and move back to where it was
rotate -r -os -fo $locatorTargetAngle[0] $locatorTargetAngle[1] $locatorTargetAngle[2];

//Clean up
ungroup;
delete $rotatorObj;

		
	&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;</description>
      <pubDate>Wed, 17 Feb 2021 21:23:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10091332#M4735</guid>
      <dc:creator>malcolm_341</dc:creator>
      <dc:date>2021-02-17T21:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10505349#M4736</link>
      <description>&lt;P&gt;Just an update to say that the Bake Pivot performance issue is resolved in Maya 2022.1&lt;/P&gt;
&lt;P&gt;--&lt;/P&gt;
&lt;P&gt;Brent&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jul 2021 13:16:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10505349#M4736</guid>
      <dc:creator>brentmc</dc:creator>
      <dc:date>2021-07-29T13:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10505920#M4737</link>
      <description>&lt;P&gt;That's great, thanks for updating the issue. Looking forward to the service pack.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jul 2021 16:15:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/10505920#M4737</guid>
      <dc:creator>malcolm_341</dc:creator>
      <dc:date>2021-07-29T16:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12066921#M4738</link>
      <description>&lt;P&gt;On the subject of&amp;nbsp;BakeCustomPivot, it doesn't seem to work when I call it from within Maya batch. I'm just calling cmds.select to select the transforms then calling&amp;nbsp;BakeCustomPivot. Is there a reason it doesn't seem to work in this context?&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 16:09:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12066921#M4738</guid>
      <dc:creator>tom_melson</dc:creator>
      <dc:date>2023-06-28T16:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12067101#M4739</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;What are you expecting to happen in batch mode?&lt;BR /&gt;&lt;BR /&gt;Bake custom pivot takes the pivot information from the move/rotate/scale tool and bakes it into the transform so it doesn't really apply in batch mode where there are no interactive transform tools.&lt;BR /&gt;&lt;BR /&gt;Your best bet is to look at the bakeCustomToolPivot.mel script in your Maya install and you will be able to see exactly what the script is doing (e.g. what underlying commands it is calling) and you might be able to adapt that to suit your needs.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 17:19:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12067101#M4739</guid>
      <dc:creator>brentmc</dc:creator>
      <dc:date>2023-06-28T17:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12068812#M4740</link>
      <description>&lt;P&gt;Hi, thanks for the quick response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To be honest, I expected it to function okay in batch mode, since afaik there's no actual user interaction, it's only adjusting attribute values of transform nodes (rotatePivot, scalePivot &amp;amp; translate).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For context, we run publish asset processes in the background in Maya batch, which does things like freeze transforms etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, I guess I need to go a bit lower into the code to find the actual cmds used. Thanks for the steer on that file, which I've found. I did try "whatIs&amp;nbsp;BakeCustomPivot" but it just came back with "Run Time Command".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually, looking at the code, I can see it does do other stuff, specifically with the orientation of the manipulators etc. so that does make sense now. I guess I just need to implement a subset of what it's doing, namely adjusting the pivot positions, translations etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 10:32:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12068812#M4740</guid>
      <dc:creator>tom_melson</dc:creator>
      <dc:date>2023-06-29T10:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12069143#M4741</link>
      <description>&lt;P&gt;No problem.&lt;BR /&gt;&lt;BR /&gt;The key commands in there are &lt;STRONG&gt;rotate&lt;/STRONG&gt;/&lt;STRONG&gt;move&lt;/STRONG&gt; commands with the &lt;STRONG&gt;-preserveChildPosition&lt;/STRONG&gt;/&lt;STRONG&gt;-preserveGeometryPosition&lt;/STRONG&gt; flags.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;xform&lt;/STRONG&gt; is also used to zero out the pivots.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 13:09:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12069143#M4741</guid>
      <dc:creator>brentmc</dc:creator>
      <dc:date>2023-06-29T13:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12069190#M4742</link>
      <description>&lt;P&gt;Great, cheers!&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 13:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12069190#M4742</guid>
      <dc:creator>tom_melson</dc:creator>
      <dc:date>2023-06-29T13:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12078201#M4743</link>
      <description>&lt;P&gt;Thought I'd come back quickly on this; I got what I needed, thanks again. And just to say that, looking at the code, I &lt;EM&gt;think&lt;/EM&gt;&amp;nbsp;it could be changed so that:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; BakeCustomPivot($ori=0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;could be made to work in batch mode. Maybe not worth it but possible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 08:34:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12078201#M4743</guid>
      <dc:creator>tom_melson</dc:creator>
      <dc:date>2023-07-04T08:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: Bake rotation pivot runs extremely slow, any other options?</title>
      <link>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12078401#M4744</link>
      <description>&lt;P&gt;Thanks Tom,&lt;BR /&gt;&lt;BR /&gt;Since the script has "Tool" in the name it is probably not worth it. (though I agree in theory the script could just detect batch mode and ignore orientation and issue&amp;nbsp; a warning)&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2023 09:56:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/maya-programming-forum/bake-rotation-pivot-runs-extremely-slow-any-other-options/m-p/12078401#M4744</guid>
      <dc:creator>brentmc</dc:creator>
      <dc:date>2023-07-04T09:56:55Z</dc:date>
    </item>
  </channel>
</rss>

