<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Random Rotate 180º]]></title><description><![CDATA[<p dir="auto"><em>On 07/11/2016 at 11:13, <strong>xxxxxxxx</strong> wrote:</em></p>
<p dir="auto">Hi, would you anyone be able to do a plugin that activates Tools&gt;Arrange Objects&gt;Randomize and rotates 180º on the Y axis? I do this all the time, so it would be great to have a one click solution. thanks!<br />
 <br />
Greg</p>
]]></description><link>http://developers.maxon.net/forum/topic/9790/13168_random-rotate-180</link><generator>RSS for Node</generator><lastBuildDate>Tue, 09 Jun 2026 17:44:38 GMT</lastBuildDate><atom:link href="http://developers.maxon.net/forum/topic/9790.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 10 May 2018 16:24:25 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Random Rotate 180º on Thu, 10 May 2018 16:24:25 GMT]]></title><description><![CDATA[<p dir="auto"><em>On 09/11/2016 at 08:29, <strong>xxxxxxxx</strong> wrote:</em></p>
<blockquote>
<p dir="auto"><strong>Originally posted by xxxxxxxx</strong></p>
<p dir="auto">Hi Greg,<br />
This can be done with a simple script.</p>
</blockquote>
<p dir="auto">wow<br />
thats awesome<br />
thank you, incredibly useful</p>
]]></description><link>http://developers.maxon.net/forum/post/50469</link><guid isPermaLink="true">http://developers.maxon.net/forum/post/50469</guid><dc:creator><![CDATA[Helper]]></dc:creator><pubDate>Thu, 10 May 2018 16:24:25 GMT</pubDate></item><item><title><![CDATA[Reply to Random Rotate 180º on Thu, 10 May 2018 16:24:25 GMT]]></title><description><![CDATA[<p dir="auto"><em>On 08/11/2016 at 20:37, <strong>xxxxxxxx</strong> wrote:</em></p>
<p dir="auto">You are awesome! Thank you ScottA!</p>
]]></description><link>http://developers.maxon.net/forum/post/50468</link><guid isPermaLink="true">http://developers.maxon.net/forum/post/50468</guid><dc:creator><![CDATA[Helper]]></dc:creator><pubDate>Thu, 10 May 2018 16:24:25 GMT</pubDate></item><item><title><![CDATA[Reply to Random Rotate 180º on Thu, 10 May 2018 16:24:25 GMT]]></title><description><![CDATA[<p dir="auto"><em>On 08/11/2016 at 12:31, <strong>xxxxxxxx</strong> wrote:</em></p>
<p dir="auto">Hi Greg,<br />
This can be done with a simple script.</p>
<p dir="auto">Put this code in the script manager and save it. Then drag the python icon to someplace in your UI.<br />
Every time you click it. The tool will execute and rotate the active object</p>
<pre><code>import c4d  
def main() :      
    
  c4d.CallCommand(c4d.ID_MODELING_RANDOMIZE_TOOL)  
  tool = c4d.plugins.FindPlugin(c4d.ID_MODELING_RANDOMIZE_TOOL, c4d.PLUGINTYPE_TOOL)  
  if tool is not None:  
      rotY = c4d.utils.Rad(180)  
      tool[c4d.MDATA_RANDOMIZE_ROTATE] = c4d.Vector(0, rotY, 0)  
      c4d.CallButton(tool, c4d.MDATA_NEWTRANSFORM)  
        
  c4d.EventAdd()              
  
if __name__=='__main__':  
  main()
</code></pre>
<p dir="auto">-ScottA</p>
]]></description><link>http://developers.maxon.net/forum/post/50467</link><guid isPermaLink="true">http://developers.maxon.net/forum/post/50467</guid><dc:creator><![CDATA[Helper]]></dc:creator><pubDate>Thu, 10 May 2018 16:24:25 GMT</pubDate></item></channel></rss>