<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Plugin Dev</title>
	<atom:link href="http://cindigo.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cindigo.wordpress.com</link>
	<description>News about Indigo, Cindigo and my other Plugins...</description>
	<lastBuildDate>Thu, 15 Oct 2009 13:08:02 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='cindigo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/a4128f5ccf3954059c36a25d6a35c4e2?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Plugin Dev</title>
		<link>http://cindigo.wordpress.com</link>
	</image>
			<item>
		<title>High precision custom GUI for float</title>
		<link>http://cindigo.wordpress.com/2009/10/12/high-precision-custom-gui-for-float/</link>
		<comments>http://cindigo.wordpress.com/2009/10/12/high-precision-custom-gui-for-float/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 12:11:47 +0000</pubDate>
		<dc:creator>fused21</dc:creator>
				<category><![CDATA[C4D Plugin Developement]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[c4d sdk]]></category>
		<category><![CDATA[cinema 4d]]></category>
		<category><![CDATA[custom gui]]></category>
		<category><![CDATA[high precision float]]></category>
		<category><![CDATA[plugin developement]]></category>
		<category><![CDATA[sdk]]></category>

		<guid isPermaLink="false">http://cindigo.wordpress.com/?p=75</guid>
		<description><![CDATA[As you probably know C4D is limited to 3 decimal places and thats frankly not enough in some situations.
So here&#8217;s some c++ code for the c4d plugin developer to get around that limitation. might be useful to some of you guys. maybe.
However its not possible to append unit strings (m, mm, °, etc.)
Looks like this:

The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=75&subd=cindigo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>As you probably know C4D is limited to 3 decimal places and thats frankly not enough in some situations.<br />
So here&#8217;s some c++ code for the c4d plugin developer to get around that limitation. might be useful to some of you guys. maybe.</p>
<p>However its not possible to append unit strings (m, mm, °, etc.)</p>
<p>Looks like this:<br />
<img src="http://i161.photobucket.com/albums/t201/fused_is_my_fucking_name/lookslikethis.jpg" alt="High precision custom GUI for float" /></p>
<p>The code after the break&#8230;</p>
<p><span id="more-75"></span></p>
<p>The code:</p>
<pre>#include "c4d.h"

const LONG CINDIGO_REAL_CUSTOMGUI = 1000001; //TODO: get plugin ID

static LONG restypetable[] = { DA_REAL };

class CindigoRealDlg : public iCustomGui
     {
          INSTANCEOF(CindigoRealDlg, iCustomGui)
     private:
          BaseContainer m_settings;

          Real m_real;
          Bool m_tristate;

     public:
          CindigoRealDlg(const BaseContainer &amp;settings, CUSTOMGUIPLUGIN *plugin)
          : iCustomGui(settings, plugin), m_real(), m_tristate(false), m_settings(settings)
          {

          }

          virtual void CustomGuiRedraw()
          {
          }

          virtual void DestroyWindow(void)
          {

          }

          virtual Bool CreateLayout (void)
          {
               AddEditNumberArrows(1000,0,80,0);

               return TRUE;
          }

          virtual Bool SupportLayoutSwitch()
          {
               return FALSE;
          }

          virtual Bool InitValues()
          {
               SetUnclampedReal(m_real);

               return TRUE;
          }

          void SetUnclampedReal(Real r)
          {
               SetReal(1000, r);
               String s = RealToString(r,-1,5);

               //if r == 0.0 set 0
               if (r == 0.0) {
                    s = "0";
               } else {
                    //cut of trailing zeros
                    LONG i = 0;
                    for(i = s.GetLength()-1; i &gt; 0; i--)
                    {
                         if (s[i] != '0') break;
                    }
                    s = s.SubStr(0, i+1);
               }

               SetString(1000, s);
          }

          virtual LONG Message(const BaseContainer&amp; msg, BaseContainer&amp; result)
          {
               if ((msg.GetId() == BFM_ACTION) &amp;&amp; msg.GetLong(BFM_ACTION_ID) == 1000)
               {
                    if (msg.GetLong(BFM_ACTION_VALCHG) || msg.GetReal(BFM_ACTION_VALUE,MAXREAL) != MAXREAL)
                    {
                         m_real = msg.GetReal(BFM_ACTION_VALUE);

                         SetUnclampedReal(m_real);

                         return TRUE; //message processed
                    }
               }

               return GeDialog::Message(msg,result);
          }

          virtual Bool Command(LONG id, const BaseContainer&amp; msg)
          {
               switch (id)
               {
               case 1000:
                    {
                         BaseContainer m(msg);
                         m.SetLong(BFM_ACTION_ID, GetId());
                         m.RemoveData(BFM_ACTION_VALUE);
                         m.SetData(BFM_ACTION_VALUE, GetData().GetValue());
                         SendParentMessage(m);

                         break;
                    }
               }
               return TRUE;
          }

          virtual Bool SetData(const TriState &amp;tristate)
          {
               m_real = tristate.GetValue().GetReal();
               m_tristate = tristate.GetTri();

               return TRUE;
          }

          virtual TriState GetData()
          {
               GetReal(1000, m_real);
               return GeData(m_real);
          }
     };

class CindigoRealGui : public CustomGuiData
     {
     public:
          virtual LONG GetId() { return CINDIGO_REAL_CUSTOMGUI; }

          virtual CDialog* Alloc(const BaseContainer &amp;settings)
          {
               CindigoRealDlg* dlg = gNew CindigoRealDlg(settings, GetPlugin());
               if (!dlg) return NULL;

               CDialog *cdlg = dlg-&gt;Get();
               if (!cdlg) return NULL;

               return cdlg;
          }

          virtual void Free(CDialog *dlg, void *userdata)
          {
               if (!dlg || !userdata) return;
               CindigoRealDlg *sub = static_cast(userdata);
               gDelete(sub);
          }

#ifdef CINDIGO_C4D_VERSION_R115
          virtual const CHAR *GetResourceSym()
#else
          virtual CHAR *GetResourceSym()
#endif
          {
               return "CINDIGO_REAL_GUI";
          }

          virtual LONG GetResourceDataType(LONG *&amp;table)
          {
               table = restypetable;
               return sizeof(restypetable)/sizeof(LONG);
          }
     };

Bool RegisterRealGUI()
{
     static BaseCustomGuiLib mylib;
     ClearMem(&amp;mylib,sizeof(mylib));
     FillBaseCustomGui(mylib);

     return InstallLibrary(CINDIGO_REAL_CUSTOMGUI, &amp;mylib, 1000, sizeof(mylib))

     &amp;&amp;

     RegisterCustomGuiPlugin("My String GUI", PLUGINFLAG_HIDE, gNew CindigoRealGui);
}</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cindigo.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cindigo.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cindigo.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cindigo.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cindigo.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cindigo.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cindigo.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cindigo.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cindigo.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cindigo.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=75&subd=cindigo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cindigo.wordpress.com/2009/10/12/high-precision-custom-gui-for-float/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c79ea7ee5b121706950e766a8fe1334?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fused21</media:title>
		</media:content>

		<media:content url="http://i161.photobucket.com/albums/t201/fused_is_my_fucking_name/lookslikethis.jpg" medium="image">
			<media:title type="html">High precision custom GUI for float</media:title>
		</media:content>
	</item>
		<item>
		<title>Uh, I&#8217;m micro blogging?</title>
		<link>http://cindigo.wordpress.com/2009/10/12/uh-im-micro-blogging/</link>
		<comments>http://cindigo.wordpress.com/2009/10/12/uh-im-micro-blogging/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 08:34:53 +0000</pubDate>
		<dc:creator>fused21</dc:creator>
				<category><![CDATA[Nicht kategorisiert]]></category>

		<guid isPermaLink="false">http://cindigo.wordpress.com/2009/10/12/uh-im-micro-blogging/</guid>
		<description><![CDATA[That&#8217;s what Twitter is for, right?
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=74&subd=cindigo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>That&#8217;s what Twitter is for, right?</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cindigo.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cindigo.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cindigo.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cindigo.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cindigo.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cindigo.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cindigo.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cindigo.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cindigo.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cindigo.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=74&subd=cindigo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cindigo.wordpress.com/2009/10/12/uh-im-micro-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c79ea7ee5b121706950e766a8fe1334?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fused21</media:title>
		</media:content>
	</item>
		<item>
		<title>Writer for Windows Mobile test</title>
		<link>http://cindigo.wordpress.com/2009/09/25/writer-for-windows-mobile-test/</link>
		<comments>http://cindigo.wordpress.com/2009/09/25/writer-for-windows-mobile-test/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 17:45:29 +0000</pubDate>
		<dc:creator>fused21</dc:creator>
		
		<guid isPermaLink="false">http://cindigo.wordpress.com/2009/09/25/writer-for-windows-mobile-test/</guid>
		<description><![CDATA[what a buggy application&#8230;
nonetheless nice and easy to use! awesome!
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=73&subd=cindigo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>what a buggy application&#8230;</p>
<p>nonetheless nice and easy to use! awesome!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cindigo.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cindigo.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cindigo.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cindigo.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cindigo.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cindigo.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cindigo.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cindigo.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cindigo.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cindigo.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=73&subd=cindigo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cindigo.wordpress.com/2009/09/25/writer-for-windows-mobile-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c79ea7ee5b121706950e766a8fe1334?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fused21</media:title>
		</media:content>
	</item>
		<item>
		<title>Blogging is cool</title>
		<link>http://cindigo.wordpress.com/2009/09/04/blogging-is-cool/</link>
		<comments>http://cindigo.wordpress.com/2009/09/04/blogging-is-cool/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 11:55:32 +0000</pubDate>
		<dc:creator>fused21</dc:creator>
				<category><![CDATA[Nicht kategorisiert]]></category>

		<guid isPermaLink="false">http://cindigo.wordpress.com/?p=69</guid>
		<description><![CDATA[I just never noticed that. I might post here more often.
Probably just coding and Indigo stuff.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=69&subd=cindigo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I just never noticed that. I might post here more often.</p>
<p>Probably just coding and Indigo stuff.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cindigo.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cindigo.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cindigo.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cindigo.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cindigo.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cindigo.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cindigo.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cindigo.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cindigo.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cindigo.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=69&subd=cindigo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cindigo.wordpress.com/2009/09/04/blogging-is-cool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c79ea7ee5b121706950e766a8fe1334?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fused21</media:title>
		</media:content>
	</item>
		<item>
		<title>fused Crimson &#8211; #5c0004</title>
		<link>http://cindigo.wordpress.com/2009/09/04/fused-crimson-5c0004/</link>
		<comments>http://cindigo.wordpress.com/2009/09/04/fused-crimson-5c0004/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 11:26:45 +0000</pubDate>
		<dc:creator>fused21</dc:creator>
				<category><![CDATA[Nicht kategorisiert]]></category>

		<guid isPermaLink="false">http://cindigo.wordpress.com/2009/09/04/fused-crimson-5c0004/</guid>
		<description><![CDATA[Heh, just bought me a color:
fused Crimson &#8211; #5c0004
2^24 colors, bet these guys will be rich real soon  
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=68&subd=cindigo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Heh, just bought me a color:</p>
<p><a href="http://www.myhexcolor.com/color-5c0004/">fused Crimson &#8211; #5c0004</a></p>
<p>2^24 colors, bet these guys will be rich real soon <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cindigo.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cindigo.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cindigo.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cindigo.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cindigo.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cindigo.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cindigo.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cindigo.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cindigo.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cindigo.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=68&subd=cindigo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cindigo.wordpress.com/2009/09/04/fused-crimson-5c0004/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c79ea7ee5b121706950e766a8fe1334?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fused21</media:title>
		</media:content>
	</item>
		<item>
		<title>Cindigo 2.0 Stable</title>
		<link>http://cindigo.wordpress.com/2009/08/01/cindigo-2-0-stable/</link>
		<comments>http://cindigo.wordpress.com/2009/08/01/cindigo-2-0-stable/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 10:29:01 +0000</pubDate>
		<dc:creator>fused21</dc:creator>
				<category><![CDATA[Nicht kategorisiert]]></category>

		<guid isPermaLink="false">http://cindigo.wordpress.com/?p=65</guid>
		<description><![CDATA[Along with the Indigo Stable release there is a new Cindigo version, which features animation support and quite a few other improvements.
Get it here.
Cindigo 2.0 Stable
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
* indigo instance will now be selected when created without a selected object
* deform mode for indigo instances fixed (does not render/export anymore when disabled)
* cindigo will always detect the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=65&subd=cindigo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Along with the Indigo Stable release there is a new Cindigo version, which features animation support and quite a few other improvements.</p>
<p>Get it <a href="http://www.indigorenderer.com/forum/viewtopic.php?f=10&amp;t=6496">here</a>.</p>
<blockquote><p>Cindigo 2.0 Stable<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
* indigo instance will now be selected when created without a selected object<br />
* deform mode for indigo instances fixed (does not render/export anymore when disabled)<br />
* cindigo will always detect the scene scale, even if no indigo render settings present<br />
* previews will always launch in the indigo GUI (temporary)<br />
* re added animation export (static animations only)<br />
* aperture diffraction default back to post process<br />
* changed default sun direction<br />
* changed indigo instance drawing mode default to &#8220;object&#8221;</p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cindigo.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cindigo.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cindigo.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cindigo.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cindigo.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cindigo.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cindigo.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cindigo.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cindigo.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cindigo.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=65&subd=cindigo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cindigo.wordpress.com/2009/08/01/cindigo-2-0-stable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c79ea7ee5b121706950e766a8fe1334?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fused21</media:title>
		</media:content>
	</item>
		<item>
		<title>Indigo 2.0</title>
		<link>http://cindigo.wordpress.com/2009/08/01/indigo-2-0/</link>
		<comments>http://cindigo.wordpress.com/2009/08/01/indigo-2-0/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 10:25:21 +0000</pubDate>
		<dc:creator>fused21</dc:creator>
				<category><![CDATA[Indigo]]></category>
		<category><![CDATA[2.0]]></category>
		<category><![CDATA[C4D]]></category>
		<category><![CDATA[Indigo Renderer]]></category>
		<category><![CDATA[MLT]]></category>
		<category><![CDATA[Pathtracing]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[Renderer]]></category>
		<category><![CDATA[stable]]></category>
		<category><![CDATA[unbiased]]></category>

		<guid isPermaLink="false">http://cindigo.wordpress.com/?p=62</guid>
		<description><![CDATA[Finally!
&#8220;Hi Everyone,
I&#8217;m pleased to announce the release of Indigo Renderer 2.0 stable.
The Indigo 2.0 series has been in Beta for the last 3 months, and has recently reached a point of sufficient stability to be released as a &#8217;stable&#8217; version.
Indigo 2.0 is the first commercial version of Indigo, and represents the latest results from over [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=62&subd=cindigo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Finally!</p>
<blockquote><p>&#8220;Hi Everyone,<br />
I&#8217;m pleased to announce the release of Indigo Renderer 2.0 stable.</p>
<p>The Indigo 2.0 series has been in Beta for the last 3 months, and has recently reached a point of sufficient stability to be released as a &#8217;stable&#8217; version.<br />
Indigo 2.0 is the first commercial version of Indigo, and represents the latest results from over 5 years of development.</p>
<p>The Indigo graphical user interface (GUI) has been rewritten to improve power and ease of use.<br />
Interactive tone mapping, layer blending etc.. is now possible with the GUI.<br />
Major new Indigo features include motion blur, easy network rendering with a customised render node GUI, and full Unicode support.<br />
Sub-surface scattering has been sped up, and aperture diffraction (glare) has been improved.</p>
<p>The Indigo exporter plug-ins have also been greatly improved, and now come with easy-to-use installers. Indigo exporter plug-ins can also now read and write Indigo material files, allowing artists to make use of the Indigo material database (<a href="http://www.indigorenderer.com/materials/">http://www.indigorenderer.com/materials/</a>), a free online repository of high-quality Indigo materials.</p>
<p>The Indigo 2.0 stable version sets a solid foundation for further improvements due in the 2.2 series, including large speed-ups and more realistic materials.</p>
<p>You can download it from:</p>
<p><a href="http://www.indigorenderer.com/download">http://www.indigorenderer.com/download</a></p>
<p>(Note: Indigo version 2.0.12 is considered 2.0 stable, so If you have already downloaded 2.0.12, don&#8217;t bother downloading it again.)&#8221;</p>
</blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cindigo.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cindigo.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cindigo.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cindigo.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cindigo.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cindigo.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cindigo.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cindigo.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cindigo.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cindigo.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=62&subd=cindigo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cindigo.wordpress.com/2009/08/01/indigo-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c79ea7ee5b121706950e766a8fe1334?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fused21</media:title>
		</media:content>
	</item>
		<item>
		<title>Cindigo 2.0.11</title>
		<link>http://cindigo.wordpress.com/2009/07/23/cindigo-2-0-11/</link>
		<comments>http://cindigo.wordpress.com/2009/07/23/cindigo-2-0-11/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 21:58:27 +0000</pubDate>
		<dc:creator>fused21</dc:creator>
				<category><![CDATA[Indigo]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[C4D]]></category>
		<category><![CDATA[cg]]></category>
		<category><![CDATA[Cindigo]]></category>
		<category><![CDATA[cinema 4d]]></category>
		<category><![CDATA[Cinema4D]]></category>
		<category><![CDATA[exporter]]></category>
		<category><![CDATA[maxon]]></category>
		<category><![CDATA[MLT]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[render]]></category>
		<category><![CDATA[Renderer]]></category>
		<category><![CDATA[unbiased]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://cindigo.wordpress.com/?p=60</guid>
		<description><![CDATA[No mac version yet, will follow soon&#8230;
Download it here
Changelog:
Cindigo 2.0.11
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
* aperture diffraction now defaults to camera aperture diffraction (not post process)
* added functionality to the new export path settings
* enabled IES previews for mac version
* light layers are not chosen by number anymore but with a dropdown with names
* added layer names to render settings
* [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=60&subd=cindigo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>No mac version yet, will follow soon&#8230;<br />
Download it <a href="http://www.indigorenderer.com/forum/viewtopic.php?f=10&amp;t=6444">here</a></p>
<p>Changelog:</p>
<blockquote><p>Cindigo 2.0.11<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
* aperture diffraction now defaults to camera aperture diffraction (not post process)<br />
* added functionality to the new export path settings<br />
* enabled IES previews for mac version<br />
* light layers are not chosen by number anymore but with a dropdown with names<br />
* added layer names to render settings<br />
* preview renderings start as working master now<br />
* material halpers will be selected when created<br />
* rgb gain is a percent slider now<br />
* fixed bug with link materials and media<br />
* removed export dialog</p>
<p>Cindigo 2.0.9.1<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
* wrote a custom image header for all indigo tags/object/etc<br />
* moved export settings from export dialog to render settings<br />
* reorganized render settings<br />
* small pigm import/linking fixes<br />
* fixed crash when material link in texture tag was empty<br />
* fixed bug in material assigning code when material link in mat helper was empty<br />
* fixed R9 quickrender bug<br />
* fixed quickrender fail when indigo path wasnt set before<br />
* fixed quickrender path issue introduced in the mac version of Cindigo 2.0.9<br />
* disabled all options in the export window that dont work<br />
* layer fix for material helpers (R11)<br />
* fixed render foregound alpha<br />
* when creating a mat helper, a c4d material is automatically created and linked<br />
* quickrender fix for mac version (which accidentally sent my whole desktop to nirvana&#8230;)</p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cindigo.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cindigo.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cindigo.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cindigo.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cindigo.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cindigo.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cindigo.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cindigo.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cindigo.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cindigo.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=60&subd=cindigo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cindigo.wordpress.com/2009/07/23/cindigo-2-0-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c79ea7ee5b121706950e766a8fe1334?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fused21</media:title>
		</media:content>
	</item>
		<item>
		<title>Cindigo 2.0.9</title>
		<link>http://cindigo.wordpress.com/2009/06/28/cindigo-2-0-9/</link>
		<comments>http://cindigo.wordpress.com/2009/06/28/cindigo-2-0-9/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 22:58:35 +0000</pubDate>
		<dc:creator>fused21</dc:creator>
				<category><![CDATA[Indigo]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[C4D]]></category>
		<category><![CDATA[Cindigo]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[render]]></category>
		<category><![CDATA[Renderer]]></category>
		<category><![CDATA[unbiased]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://cindigo.wordpress.com/?p=56</guid>
		<description><![CDATA[No documentation yet, but a new release adding functionality to the Indigo Instance object. The export routine was rewritten, to make instance export easier and faster. The Indigo Instance supports nesting now (instances of instances). Get it here.
Read the Changelog:
Cindigo 2.0.9
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
* implemented alias_material for previewing linked materials
* gamma fix for imported materials with RGB
* implemented [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=56&subd=cindigo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>No documentation yet, but a new release adding functionality to the Indigo Instance object. The export routine was rewritten, to make instance export easier and faster. The Indigo Instance supports nesting now (instances of instances). Get it <a href="http://www.indigorenderer.com/forum/viewtopic.php?f=10&amp;t=6217">here</a>.</p>
<p>Read the Changelog:</p>
<blockquote><p>Cindigo 2.0.9<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
* implemented alias_material for previewing linked materials<br />
* gamma fix for imported materials with RGB<br />
* implemented pigm import and linking<br />
* exported materials will always be exported as pigms<br />
* fixed emissive material icon for R11<br />
* quickrender does not rely on the config file anymore<br />
* Sun and sky will now be always drawn to a seperate layer than other lights<br />
* fixed material inheriting and materials with selections<br />
* added thread_priority command line switch<br />
* added sun and sky layer<br />
* fix for nested instance loops<br />
* fix for transformaton issues with non-uniform scale<br />
* nested indigo instances will now be drawn<br />
* implemented instance export for the indigo instance object<br />
* reworked the export routine ^again^ to make instance exporting easier<br />
* small changes to motion blur</p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cindigo.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cindigo.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cindigo.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cindigo.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cindigo.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cindigo.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cindigo.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cindigo.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cindigo.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cindigo.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=56&subd=cindigo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cindigo.wordpress.com/2009/06/28/cindigo-2-0-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c79ea7ee5b121706950e766a8fe1334?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fused21</media:title>
		</media:content>
	</item>
		<item>
		<title>The mission: Documentation</title>
		<link>http://cindigo.wordpress.com/2009/06/09/the-mission-documentation/</link>
		<comments>http://cindigo.wordpress.com/2009/06/09/the-mission-documentation/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 11:15:40 +0000</pubDate>
		<dc:creator>fused21</dc:creator>
				<category><![CDATA[Nicht kategorisiert]]></category>
		<category><![CDATA[cindigo manual documentation indigo renderer plugin unbiased]]></category>

		<guid isPermaLink="false">http://cindigo.wordpress.com/2009/06/09/the-mission-documentation/</guid>
		<description><![CDATA[I&#8217;ll start working on some form of manual for Cindigo after the initial bugs of the recent version are fixed.
And as a complement i will release a package of testscenes along with the manual, about topics explained in it and some more advanced stuff.
Stay tuned  
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=52&subd=cindigo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ll start working on some form of manual for Cindigo after the initial bugs of the recent version are fixed.</p>
<p>And as a complement i will release a package of testscenes along with the manual, about topics explained in it and some more advanced stuff.</p>
<p>Stay tuned <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cindigo.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cindigo.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cindigo.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cindigo.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cindigo.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cindigo.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cindigo.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cindigo.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cindigo.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cindigo.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cindigo.wordpress.com&blog=3078156&post=52&subd=cindigo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cindigo.wordpress.com/2009/06/09/the-mission-documentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3c79ea7ee5b121706950e766a8fe1334?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fused21</media:title>
		</media:content>
	</item>
	</channel>
</rss>