<?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/"
	>

<channel>
	<title>Rhinoceros 3D Help - Tutorials, Links, Galleries, Forum, Jobs, Video, Commands, CAD, Training &#187; GradientView</title>
	<atom:link href="http://www.rhino3dhelp.com/tag/gradientview/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rhino3dhelp.com</link>
	<description>Tutorials, Links, Galleries, Forum, Jobs, Video, Commands, CAD, Training</description>
	<lastBuildDate>Thu, 17 Jun 2010 12:23:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Creating Your First Toolbar/Button/Macro</title>
		<link>http://www.rhino3dhelp.com/tutorials/creating-your-first-toolbar-button-macro/</link>
		<comments>http://www.rhino3dhelp.com/tutorials/creating-your-first-toolbar-button-macro/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 22:16:10 +0000</pubDate>
		<dc:creator>Ivan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[GradientView]]></category>
		<category><![CDATA[Grid]]></category>

		<guid isPermaLink="false">http://www.rhino3dhelp.com/?p=1583</guid>
		<description><![CDATA[Our kind user, Brian Lake, decided to share some of his knowledge with the rest of us, and in this tutorial he will be showing you some basics about macros, toolbars, and button creation. The model used will be a model provided by Rhino in the Tutorial section. (C:\Program Files\Rhinoceros 4.0\English\Tutorials\Camera-SLR.3dm) Our object is going [...]]]></description>
			<content:encoded><![CDATA[<p>Our kind user, Brian Lake, decided to share some of his knowledge with the rest of us, and in this tutorial he will be showing you some basics about macros, toolbars, and button creation.<br />
<span id="more-1583"></span></p>
<div id="attachment_1585" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/1.JPG" rel="lightbox[1583]"><img class="size-medium wp-image-1585" title="1" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/1-300x233.jpg" alt="Image 1" width="300" height="233" /></a><p class="wp-caption-text">Image 1</p></div>
<p>The model used will be a model provided by Rhino in the Tutorial section.<br />
(C:\Program Files\Rhinoceros 4.0\English\Tutorials\Camera-SLR.3dm)</p>
<p>Our object is going to be creating a custom toolbar with a custom button that will turn a “blueprint” preview on and off of our viewports.</p>
<div id="attachment_1586" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/3.JPG" rel="lightbox[1583]"><img class="size-medium wp-image-1586" title="3" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/3-300x63.jpg" alt="Image 2" width="300" height="63" /></a><p class="wp-caption-text">Image 2</p></div>
<p>You should already have your Command Window open. <span style="color: #ff0000;">ALWAYS! </span><br />
Your command window will provide you with just about everything that is going on in the Rhinoceros program. (Including the commands you will need to use to initiate macro commands.)</p>
<p>Next you&#8217;ll need to have your macro editor open.</p>
<div id="attachment_1587" class="wp-caption alignnone" style="width: 292px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/2.JPG" rel="lightbox[1583]"><img class="size-medium wp-image-1587" title="2" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/2-282x300.jpg" alt="Image 3" width="282" height="300" /></a><p class="wp-caption-text">Image 3</p></div>
<p>As stated earlier every button/tool in Rhinoceros initiates these so called Commands in the Command window.<br />
To test this out, go ahead and push the move button in your toolbar and watch the command window. Notice the _Move command which was initiated?<br />
What does this mean? This means you can run Rhinoceros without ever having to click a button in your toolbars. (But the defeats the purpose of having easy to use buttons!)</p>
<p>Rhinoceros has been built to be very straightforward with commands such as Move, Delete, Rotate, <a href="http://www.rhino3dhelp.com/tag/grid/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Grid">Grid</a>, etc.. If you ever are unaware of a command you can simply initiate the tool however you would and see what the command window is using as the actual command. For this tutorial we will be using the <a href="http://www.rhino3dhelp.com/tag/grid/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Grid">Grid</a> and <a href="http://www.rhino3dhelp.com/tag/gradientview/" class="st_tag internal_tag" rel="tag" title="Posts tagged with GradientView">GradientView</a> commands. Seems simple right? Simple but powerful!</p>
<p>No more wasting time, let&#8217;s get to the dirty work!<br />
In our macro editor, let&#8217;s initate the grid command so we can control the properties of a grid(s).</p>
<div id="attachment_1588" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/4.JPG" rel="lightbox[1583]"><img class="size-medium wp-image-1588" title="4" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/4-300x46.jpg" alt="Image 4" width="300" height="46" /></a><p class="wp-caption-text">Image 4</p></div>
<p>Why did we use <strong>! _Grid</strong>?</p>
<p>The <strong><span style="color: #ff0000;">!</span></strong> Character will stop any current processes you may have running in Rhinoceros. This will keep you from accidentally running the macro when it shouldn&#8217;t be ran. You should always start your macros with the ! Character.</p>
<p>The <strong><span style="color: #ff0000;">_</span></strong> right before Grid is a way of telling Rhinoceros to ignore the specific word Grid and use whichever word is identical in the current language of the current user. It&#8217;s always good practice to code this way, however, if you have no intention of sharing your macros then you may omit this while writing your macros.</p>
<p>Ok, so we&#8217;ve initiated the Grid command and now see several options we are able to change within the Command window. All we are going to do is type the commands we want to control exactly how you see them.</p>
<div id="attachment_1589" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/5.JPG" rel="lightbox[1583]"><img class="size-medium wp-image-1589" title="5" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/5-300x210.jpg" alt="Image 5" width="300" height="210" /></a><p class="wp-caption-text">Image 5</p></div>
<p>As our code is stating:</p>
<p><strong>ShowGrid</strong>=No        We are telling the Grid option we don&#8217;t want the grid shown<br />
<strong>ShowGridAxes</strong>=No        We are telling the Grid axis option we don&#8217;t want the grid shown<br />
<strong>ShowWorldAxes</strong>=No    We are telling the World axis option we don&#8217;t want the grid shown<br />
<strong>ApplyTo</strong>=All        This is telling the Grid command that we want these options applied to all of our viewports. (You can choose to have it apply to only specific viewports if you wish.)<br />
<strong>Enter</strong> This command is doing exactly what would happen if you were to hit the enter/return key on your keyboard. In this case it&#8217;s submitting all of our changes and finishing the grid command.</p>
<p>All commands in the macro editor must be separated with a space so watch closely as so you don&#8217;t insert or miss a space where it is necessary.</p>
<p>Check it out! We have turned all of our grids and axes off in our viewports!</p>
<div id="attachment_1590" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/6.JPG" rel="lightbox[1583]"><img class="size-medium wp-image-1590" title="6" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/6-300x233.jpg" alt="Image 6" width="300" height="233" /></a><p class="wp-caption-text">Image 6</p></div>
<p>Let&#8217;s jump ahead and finish our macro!</p>
<div id="attachment_1591" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/7.JPG" rel="lightbox[1583]"><img class="size-medium wp-image-1591" title="7" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/7-300x223.jpg" alt="Image 7" width="300" height="223" /></a><p class="wp-caption-text">Image 7</p></div>
<p>One thing to pay attention to is the <span style="color: #ff0000;"><strong>-GradientView</strong></span> command. We are using the – at the beginning because without it, the command editor will actually skip any of our input and by default turn on/off the GradientView ability.</p>
<p>As you&#8217;ll notice I&#8217;ve input all of the settings I wish to change while in the GradientView command and closing the command with the<span style="color: #ff0000;"><strong> _Enter</strong></span> after I&#8217;ve changed any settings I felt necessary.<br />
Your viewports should now look something similar to mine.</p>
<div id="attachment_1592" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/8.JPG" rel="lightbox[1583]"><img class="size-medium wp-image-1592" title="8" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/12/8-300x233.jpg" alt="Image 8" width="300" height="233" /></a><p class="wp-caption-text">Image 8</p></div>
<p>Congratulations, you&#8217;ve completed your very first macro!</p>
<p>“But wait a minute&#8230;. How do I save and use this macro by pressing a button?”<br />
Have no fear my Rhinoceros minions!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rhino3dhelp.com/tutorials/creating-your-first-toolbar-button-macro/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Prettify my Rhino experience</title>
		<link>http://www.rhino3dhelp.com/tutorials/prettify-my-rhino-experience/</link>
		<comments>http://www.rhino3dhelp.com/tutorials/prettify-my-rhino-experience/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 15:22:37 +0000</pubDate>
		<dc:creator>Ivan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[GradientView]]></category>
		<category><![CDATA[Grid]]></category>

		<guid isPermaLink="false">http://www.rhino3dhelp.com/?p=1187</guid>
		<description><![CDATA[I&#8217;d like to point out some of great features that are in Rhino, but not many people know of, or even use. This is the list of template and settings options I like to use, and is not the definite list of all the options and settings, but a nice list nevertheless. huh Introduction Ok, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to point out some of great features that are in Rhino, but not many people know of, or even use. This is the list of template and settings options I like to use, and is not the definite list of all the options and settings, but a nice list nevertheless. huh</p>
<p><span id="more-1187"></span></p>
<h3>Introduction</h3>
<p>Ok, first things first. In this tutorial I will show you how to prettify your experience in Rhino. Right now, in Rhino viewport the lines and everything else is pretty much jaggy, and without any antialiasing. Of course that is changed in V5, but until it is released here are few tips on how to make your user interface a bit more better looking.</p>
<p>So lets see the comparison of two Rendered viewports.(note that the images below are 2 times smaller for the purpose of web, so the AA is smoothed out on the first one a bit)</p>
<div id="attachment_1188" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/comparisson.jpg" rel="lightbox[1187]"><img class="size-medium wp-image-1188" title="comparisson" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/comparisson-300x100.jpg" alt="comparisson" width="300" height="100" /></a><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/demo.zip"><img class="size-medium wp-image-1189 " title="fin" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/fin-300x200.jpg" alt="fin" width="300" height="200" /></a><p class="wp-caption-text">Comparison &amp; download demo model</p></div>
<h3>STEP 1</h3>
<p>I don&#8217;t know if this can be called a step, but never mind that now. First I&#8217;d like to differentiate two things that I will be using and changing here. First one is Options dialogue. This dialogue can be accessed through menu Tools-&gt;Options. In here you can change how Rhino works. From user interface options like colors and viewports to settings for rendering mesh quality. But we will focus on the viewport mainly. The other one is Template. Template is like your own workspace, and you are prompted to select one of predefined templates every time you open your Rhino, or select File-&gt;New menu option. Templates define, among other settings, how many layers you have, what the names of them are, and every layer option (material, color, line weight, line type&#8230;) dimension properties like global scale, dimension numbers, sizes, arrow types etc, and grid settings.</p>
<p><strong>Important:</strong> Templates settings are saved in a Rhino .3dm file and therefore if you don&#8217;t save it you will lose your settings, and Rhino Options are saved everytime you exit Rhino, so if your Rhino crashes your settings will not be saved, and if you reinstall Rhino you will lose your settings and templates. So, you can export settings .ini and your template to a safe place.</p>
<p>Ok, so starting point would be setting the Antialiasing level in Rhino. There are some Test commands in Rhino v4 that I will not use, but rather will use graphic card setting in windows control panel. Now, I&#8217;m not sure how to achieve this with ATI cards because I don&#8217;t have one, but I&#8217;m sure there are similar options.</p>
<p>So, lets first head out to our Control Panel, and find there our NVIDIA Control Panel. There, under 3D Settings, go to Manage 3D settings. In the Program Settings tab you will have to add application. So, click on the Add and browse for rhino.exe (you can usually find it in C:\Program Files\Rhinoceros 4.0\System\ directory). Then under <strong>Antialiasing &#8211; Mode</strong> choose <strong>Override any application setting</strong>, and under <strong>Antialiasing &#8211; Setting</strong> choose <strong>8x</strong>. On some graphics cards this can be a drag, but I believe you already know that setting AA is going to slow down your graphics performance. So, if 8x doesn&#8217;t work well for you, try lowering it. Hit Apply, and you&#8217;re ready to start Rhino.</p>
<div id="attachment_1191" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img1.jpg" rel="lightbox[1187]"><img class="size-medium wp-image-1191" title="ui_img1" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img1-300x213.jpg" alt="ui_img1" width="300" height="213" /></a><p class="wp-caption-text">NVIDIA Control Panel</p></div>
<p>Next thing is a plugin called <a href="http://www.jewelslab.com/index.php/auxpecker-free">AuxPecker 1.1</a> (update: thanks Riccardo for a new link &#8211; now, free registration required for downloading). <span style="text-decoration: line-through;">At the time I&#8217;m writing this, the web site doesn&#8217;t work, and I&#8217;m not quite sure why, so if it still doesn&#8217;t work</span> download <a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/Auxpecker_1.0.zip">AuxPecker 1.0 here</a>. Installation is easy, just extract the AuxPacker directory from the zip file you downloaded and put it in C:\Program Files\Rhinoceros 4.0\Plug-ins\. Next, open Rhino and go to Tools-&gt;Options-&gt;Plug-ins. There click on Install button, and browse for <strong>Auxpecker.dll</strong>. You should have your AuxPacker set to go now. (one more side note: you don&#8217;t actually need the plugin itself, you only need environment maps that comes with the plugin, but since you already have a whole plugin, I decided to show you how to install plugin)<strong> </strong></p>
<h3>Setting your template<strong></strong></h3>
<p>First, we will set the environment map on the material we will use in our Viewport. Make sure you have Rendered viewport. Go to Layers and click on the circle under Material, then in a window that popped up under Environment settings browse for Map file, and select one of the materials in AuxPecker directory. Click OK, and that is it. While in Layers, you can rename one of your layers to &#8220;curves&#8221; because that is the layer needed in most workflows, or set the number of layers how you want and name them how you want and need. You can set environment maps to other layers as well.</p>
<div id="attachment_1192" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img2.jpg" rel="lightbox[1187]"><img class="size-medium wp-image-1192" title="ui_img2" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img2-300x133.jpg" alt="Setting Environment map" width="300" height="133" /></a><p class="wp-caption-text">Setting Environment map</p></div>
<p>Now, we will set our grid system. You can either input <a href="http://www.rhino3dhelp.com/tag/grid/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Grid">Grid</a> command or go to Tools-&gt;Options-&gt;<a href="http://www.rhino3dhelp.com/tag/grid/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Grid">Grid</a>, but I prefer the <a href="http://www.rhino3dhelp.com/tag/grid/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Grid">Grid</a> command and this is how I will do it here. Input <a href="http://www.rhino3dhelp.com/tag/grid/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Grid">Grid</a>, and click on the Extents and input 10. You should do this for all your viewports. So, this is viewport independent. Of course you can set the options the way you want. Maybe you don&#8217;t want to have a grid system at all. Or turn off the axis.</p>
<p>Next thing would be setting the Gradient in the background of your viewports. You do this with <a href="http://www.rhino3dhelp.com/tag/gradientview/" class="st_tag internal_tag" rel="tag" title="Posts tagged with GradientView">GradientView</a> command. That command only toggles the visibility of gradient. For changing the settings input -<a href="http://www.rhino3dhelp.com/tag/gradientview/" class="st_tag internal_tag" rel="tag" title="Posts tagged with GradientView">GradientView</a>, and then you can change colors. I&#8217;ve got 2 colors (you can choose between 2 or 4) and set to Top=235,235,235 and Bottom=180,180,180. Don&#8217;t forget to set the State option to On. There you can also change the View you want to affect, but leave it at View=All if you want all viewports to have the gradient.</p>
<p>Ok, this is it for the template. Now, delete all objects from your scene, and go to File-&gt;Save as template&#8230;  Now, go to File-&gt;New, and select your template and check the box Use this file when Rhino starts if you don&#8217;t want to choose the template every time your Rhino starts.</p>
<div id="attachment_1193" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img3.jpg" rel="lightbox[1187]"><img class="size-medium wp-image-1193" title="ui_img3" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img3-300x192.jpg" alt="ui_img3" width="300" height="192" /></a><p class="wp-caption-text">Final look of your template</p></div>
<h3>STEP 2</h3>
<p>Ok, in this step we will go through some Rhino options that can help us in our everyday work. First of all, lets set how the objects in our viewport are shown. Go to Tools-&gt;Options and under Rhino Options-&gt;Appearance-&gt;Advanced Settings-&gt;Rendered-&gt;Objects set the control point size to 4. When you apply NVIDIA antialiasing everything is smoothed but also very small. So, enlarging the control points and points is a good way. Now do the same under Objects-&gt;Points. All 3 point types set to size=4. (for the points, it is very good to enlarge them in all viewports, so do this for wire, shaded too).  Now, go to Objects-&gt;Surfaces and under Naked Edge usage select &#8220;Use separate settings for naked edges&#8221;, and Edge thickness set to 2. The thickness of regular line or curve is 1px, so setting this to 2px is going to make your naked edges stand out bit more. You can also change the color of naked edges by changing Edge color usage.</p>
<p>Now, if you want to see the isoparms on your objects too, that can be achieved only if you have Rhino as your current renderer. So, first go check that under Render-&gt;Current Renderer-&gt;Rhino render. Now, go back to Rhino Options, and under Document Properties-&gt;Rhino Render find Miscellaneous and check &#8220;Render curves&#8221; and &#8220;Render surface edges and isocurves&#8221;.</p>
<div id="attachment_1194" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img4.jpg" rel="lightbox[1187]"><img class="size-medium wp-image-1194" title="ui_img4" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img4-300x192.jpg" alt="ui_img4" width="300" height="192" /></a><p class="wp-caption-text">Setting isocurve visibility</p></div>
<p>END</p>
<p>Ok, this is pretty much it, there are a lot of options you can ckeck out too, but before you do, there are a couple of more interesting options I will go through. For example ToolTips (Rhino Options-&gt;Modeling aids-&gt;Cursor ToolTips), you can display various kind of information in your tooltips like the ones used for Osnap.</p>
<div id="attachment_1195" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img5.jpg" rel="lightbox[1187]"><img class="size-medium wp-image-1195" title="ui_img5" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img5-300x192.jpg" alt="Cursor ToolTips" width="300" height="192" /></a><p class="wp-caption-text">Cursor ToolTips</p></div>
<p>Next one is pretty useful too, it is setting your Ortho degree. By default it is set to snap to every 90 degrees, but I find it very useful to have it snap to 45 degrees. You can change that by right clicking your mouse on the Ortho in status bar and selecting settings. There you will have an option &#8220;Ortho snap to every 90 degrees, where you can change 90 to 45 or any other number you prefer.</p>
<div id="attachment_1196" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img6.jpg" rel="lightbox[1187]"><img class="size-medium wp-image-1196" title="ui_img6" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img6-300x192.jpg" alt="Ortho snap to every 45 degrees" width="300" height="192" /></a><p class="wp-caption-text">Ortho snap to every 45 degrees</p></div>
<p>If you ever find yourself to lose Menu, command line or something similar, you can always go to Rhino Options-&gt;Appearance and under &#8220;Show the following items&#8221; cart you can restore them.</p>
<div id="attachment_1197" class="wp-caption alignnone" style="width: 310px"><a href="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img7.jpg" rel="lightbox[1187]"><img class="size-medium wp-image-1197" title="ui_img7" src="http://www.rhino3dhelp.com/wp-content/uploads/2009/10/ui_img7-300x192.jpg" alt="ui_img7" width="300" height="192" /></a><p class="wp-caption-text">Show menu, command line etc</p></div>
<p>And one last tip for you is when your Rendered viewport doesn&#8217;t show you your model correctly. When you get some jagged edges or something like that. It is just how your mesh is calculated for your Rendered viewport. You can control that in Tool-&gt;Options too. Go to Document Properties-&gt;Mesh and select Smooth and slower. If that doesn&#8217;t work for you, select custom.</p>
<p>Hope you have learned a bit from this short walkthrough of setting your Rhino options to make Rhino look nicer and help you work faster. If you have some questions, please don&#8217;t hesitate to ask them below in comments. Thank you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rhino3dhelp.com/tutorials/prettify-my-rhino-experience/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

