<?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>[as] &#187; AEC CAD</title>
	<atom:link href="http://www.alexschreyer.net/category/cad/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alexschreyer.net</link>
	<description>AEC CAD/BIM, Timber Engineering, Web Design and more...</description>
	<lastBuildDate>Sun, 29 Jan 2012 10:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Creating an RBZ Plugin for SketchUp</title>
		<link>http://www.alexschreyer.net/cad/creating-an-rbz-plugin-for-sketchup/</link>
		<comments>http://www.alexschreyer.net/cad/creating-an-rbz-plugin-for-sketchup/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 19:37:04 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[SketchUp]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=3383</guid>
		<description><![CDATA[The following is a cross-post from my other site http://sketchupplugins.com. When you are done creating your new plugin, feel free to add it to the index on http://sketchupplugins.com. It&#8217;s free and easy. Learn Plugin Developement There are many tutorials, resources and forums available online that will help you get started. Use the following list as a springboard: [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/02/sketchup_ruby_editor_schreyer_01.jpg"  class="thickbox"><img class="size-medium wp-image-2113 alignnone" title="SketchUp Ruby Code Editor" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/02/sketchup_ruby_editor_schreyer_01-440x393.jpg" alt="" width="440" height="393" /></a></p>
<p>The following is a cross-post from my other site <a href="http://sketchupplugins.com/" target="_blank">http://sketchupplugins.com</a>. When you are done creating your new plugin, feel free to add it to the index on <a href="http://sketchupplugins.com/">http://sketchupplugins.com</a>. It&#8217;s free and easy.</p>
<h3>Learn Plugin Developement</h3>
<p>There are many tutorials, resources and forums available online that will help you get started. Use the following list as a springboard:</p>
<ul>
<li><a href="http://code.google.com/apis/sketchup/docs/tutorial_helloworld.html" target="_blank">Hello world!</a></li>
<li><a href="http://code.google.com/apis/sketchup/docs/tutorial_distributing.html" target="_blank">Distributing your plugin</a></li>
<li><a href="http://code.google.com/apis/sketchup/" target="_blank">SketchUp API documentation</a></li>
<li><a href="http://www.alexschreyer.net/cad/sketchup-ruby-api-cheatsheet/" target="_blank">SketchUp Ruby Cheatsheet</a></li>
<li><a href="http://sketchupapi.blogspot.com/" target="_blank">Official SketchUp API Blog</a></li>
<li><a href="http://forums.sketchucation.com/viewtopic.php?f=180&amp;t=10142" target="_blank">SketchUp Ruby Resources</a></li>
<li><a href="http://forums.sketchucation.com/viewtopic.php?f=180&amp;t=28846" target="_blank">Ruby Code Snippets</a></li>
<li><a href="http://ruby-doc.org/" target="_blank">Ruby Documentation</a></li>
</ul>
<p>You can also find great forums for discussion in the official <a href="https://groups.google.com/forum/#!forum/google-sketchup-developers" target="_blank">Google Developer Forum</a> or at <a href="http://forums.sketchucation.com/" target="_blank">SketchUcation</a>.</p>
<p>The following concerns plugins written in Ruby (the programming language included with SketchUp’s free and Pro versions). It is a basic template to get you started. Also note that SketchUp has a <a href="http://code.google.com/apis/sketchup/docs/downloadsdksubmit.html" target="_blank">C++ SDK</a> (in case you intend to work with it from other software).</p>
<p>Although you can use any text editor to create a plugin, it might be a good idea to install my <a title="Ruby Code Editor" href="http://sketchupplugins.com/plugins/ruby-code-editor/">Ruby Code Editor</a> plugin into SketchUp first. This allows you to experiment with Ruby scripting. You can then afterwards package your code in a plugin using the instructions below.<span id="more-3383"></span></p>
<h3>RBZ Plugin File Structure</h3>
<p>The RBZ file format was introduced in Maintenance Release 2 of Version 8. Packaging a plugin this way allows a user to easily install it from SketchUp’s Preferences dialog.</p>
<p>To enable use of the RBZ-installer functionality, all files that make up a plugin must be packaged in one single compressed file (note that the RBZ file is simply a re-named ZIP file). The following is a minimal sample file structure. You can add as many other files and folders as necessary for your plugin. The entire contents of the compressed file will get copied into SketchUp’s Plugins folder on installation.</p>
<pre>my_plugin.rbz (compressed file)
  |
  |-- my_plugin_loader.rb
  |
  |-- my_plugin (directory)
        |
        |-- my_plugin.rb</pre>
<p>As a reference: SketchUp’s default Plugin installation folder can be found here (replace version number with current major version):</p>
<p>Windows: <code>C:\Program Files\Google\Google SketchUp 8\Plugins\</code><br />
Mac: <code>/Library/Application Support/Google SketchUp 8/SketchUp/Plugins/</code></p>
<h3>Plugin Template</h3>
<p>It is a good idea to a) use SketchUp’s extension system and b) wrap your plugin in a Ruby Module. Below is some sample code to get you started. Replace “my” with your initials to keep things clean.</p>
<p>Contents of <strong>/my_plugin_loader.rb</strong> (in main directory)</p>
<pre>require "sketchup.rb"
require "extensions.rb"

# Load plugin as extension (so that user can disable it)

my_plugin_loader = SketchupExtension.new "My_Plugin Loader",
"my_plugin/my_plugin.rb"
my_plugin_loader.copyright= "Copyright 2011 by Me"
my_plugin_loader.creator= "Me, myself and I"
my_plugin_loader.version = "1.0"
my_plugin_loader.description = "Description of plugin."
Sketchup.register_extension my_plugin_loader, true</pre>
<p>Contents of<strong> /my_plugin/my_plugin.rb</strong> (in subfolder)</p>
<pre>=begin
Copyright 2010, Author
All Rights Reserved
THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
License: AuthorsLicenseStatement
Author: AuthorName
Organization: AuthorAffiliationOrOrganizationIfAny
Name: ScriptName
Version: ScriptVersion
SU Version: MinimumSketchUpVersion
Date: Date
Description: ScriptDescription
Usage: ScriptUsageInstructions
History:
 1.000 YYYY-MM-DD Description of changes
=end

require "sketchup.rb"
# Main code (start module name with capital letter)
module My_module
 def self.my_method
# do something...
end
 def self.my_second_method
 # do something...
 end
end
# Create menu items
unless file_loaded?(__FILE__)
 mymenu = UI.menu("Plugins").add_submenu("My Plugin Collection")
 mymenu.add_item("My Tool 1") {My_module::my_method}
 mymenu.add_item("My Tool 2") {My_module::my_second_method}
 file_loaded(__FILE__)
end</pre>
<p><em>Tip:</em> If you prefer to not have your plugin’s source code visible, then you can use SketchUp’s <a href="http://code.google.com/apis/sketchup/docs/utilities.html" target="_blank">Scrambler</a> to encrypt Ruby files.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/cad/creating-an-rbz-plugin-for-sketchup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merry Christmas and a Happy New Year 2012!</title>
		<link>http://www.alexschreyer.net/misc/merry-christmas-and-a-happy-new-year-2012/</link>
		<comments>http://www.alexschreyer.net/misc/merry-christmas-and-a-happy-new-year-2012/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 12:00:15 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Timber Engineering]]></category>
		<category><![CDATA[Web & Programming]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[green design]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=3369</guid>
		<description><![CDATA[Now that the holidays are almost here&#8230; I wish you all a joyful and peaceful time. Wherever you are and whatever you celebrate, enjoy time with your family, rest, relax, take some time off and recharge. All the best for the new year. See you in 2012!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2011/12/ir_merry_christmas_by_alex_schreyer.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-3370" title="IR Merry Christmas by Alex Schreyer" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/12/ir_merry_christmas_by_alex_schreyer-400x400.jpg" alt="" width="400" height="400" /></a></p>
<p>Now that the holidays are almost here&#8230;</p>
<p>I wish you all a joyful and peaceful time. Wherever you are and whatever you celebrate, enjoy time with your family, rest, relax, take some time off and recharge. All the best for the new year. See you in 2012!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/misc/merry-christmas-and-a-happy-new-year-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maintenance update (M2) for SketchUp 8 released</title>
		<link>http://www.alexschreyer.net/cad/maintenance-update-m2-for-sketchup-8-released/</link>
		<comments>http://www.alexschreyer.net/cad/maintenance-update-m2-for-sketchup-8-released/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 12:00:58 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[BIM]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[green design]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[SketchUp]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=3343</guid>
		<description><![CDATA[If you are using SketchUp, then it&#8217;s time for you to soon browse over to Google&#8217;s website and download the latest version (v.8 M2). Although this release is not a new version but rather a maintenance release (hence the &#8220;M2&#8243;), there are a few new features and a bunch of bugfixes. So what&#8217;s new and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2011/12/Install-Extension_1.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-3345" title="Install Extension" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/12/Install-Extension_1-440x293.jpg" alt="" width="440" height="293" /></a></p>
<p>If you are using SketchUp, then it&#8217;s time for you to soon browse over to Google&#8217;s website and download the latest version (v.8 M2). Although this release is not a new version but rather a maintenance release (hence the &#8220;M2&#8243;), there are a few new features and a bunch of bugfixes.</p>
<p>So what&#8217;s new and exciting in this version? The new features are:</p>
<ul>
<li><strong>A new plugin/extension file format and installation procedure</strong><br />
Plugins can now be &#8220;packaged&#8221; in a ZIP file (which has the RBZ extension). This has the advantage that the end user does not need to worry about a plugin&#8217;s files and where they need to go. He/she simply needs to go into the program&#8217;s preferences and click the &#8220;Install Extension&#8230;&#8221; button. Done! Time for me to re-write my <a title="Plugin Loader for SketchUp" href="http://www.alexschreyer.net/projects/plugin-loader-for-sketchup/" target="_blank">Plugin Loader plugin</a>, I guess.</li>
<li><strong>New Ruby method to support this behaviour</strong><br />
A developer can now program this behaviour into their own plogin using the new Sketchup.install_from_archive(<em>path_to_rbz</em>) method.</li>
<li><strong>Better COLLADA import/export</strong><br />
SketchUp&#8217;s support for the COLLADA file format (with a DAE extension) has been improved and made more reliable.</li>
<li><strong>Advanced camera tools are now included in the Pro version by default</strong><br />
This set of tools that was previously only available as an additional plugin is now included in the main installation. Even if you are not a cinematographer, an advantage of these tools is pre-visualizing how a real camera would see a scene.</li>
<li><strong>Pro trials stop working without a license</strong><br />
In the past, when a trial for the Pro version ended, SketchUp would simply revert to the free version.  This option has now been removed &#8211; mainly to reduce user confusion.</li>
<li><strong>Support for the Mac&#8217;s Lion operating system</strong></li>
</ul>
<h3><span id="more-3343"></span>For more on the release:</h3>
<ul>
<li><a href="http://sketchup.google.com/" target="_blank">sketchup.google.com</a></li>
<li><a href="http://sketchupdate.blogspot.com/2011/12/another-important-update-for-sketchup-8.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+OfficialGoogleSketchupBlog+%28Official+Google+SketchUp+Blog%29">Official Google SketchUp Blog: Another important update for SketchUp 8</a></li>
<li><a href="http://support.google.com/sketchup/bin/static.py?hl=en&amp;page=release_notes.cs" target="_blank">Release notes for M2</a></li>
<li><a href="http://sketchupapi.blogspot.com/2011/12/rbzs-in-sketchup-8m2-distribute-your.html">RBZs in SketchUp 8M2: Distribute Your Plugin as One File!</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/cad/maintenance-update-m2-for-sketchup-8-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My presentations at the Google Geo User Summit 2011 United States</title>
		<link>http://www.alexschreyer.net/cad/my-presentations-at-the-google-geo-user-summit-2011-united-states/</link>
		<comments>http://www.alexschreyer.net/cad/my-presentations-at-the-google-geo-user-summit-2011-united-states/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 15:22:28 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[BIM]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[SketchUp]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[UMass]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=3015</guid>
		<description><![CDATA[When I went to the 2011 Google Geo User Summit United States in Mountain View, CA this July, I had the chance to present two projects that I have worked on in the recent past here at the University of Massachusetts. &#8220;Building a 3D World&#8221; The first presentation was on our campus modeling project in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/alexander_schreyer_google_geo_summit-1.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-3017" title="alexander_schreyer_google_geo_summit (1)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/alexander_schreyer_google_geo_summit-1-440x292.jpg" alt="alexander_schreyer_google_geo_summit (1)" width="440" height="292" /></a></p>
<p>When I went to the <a href="https://sites.google.com/site/geocommunitysummitusa/" target="_blank">2011 Google Geo User Summit United States</a> in Mountain View, CA this July, I had the chance to present two projects that I have worked on in the recent past here at the <a href="http://bct.eco.umass.edu/" target="_blank">University of Massachusetts</a>.</p>
<h3>&#8220;Building a 3D World&#8221;</h3>
<p>The first presentation was on our campus modeling project in which my students (mostly from the <a href="http://blogs.umass.edu/bct420-schreyer/" target="_blank">BCT 420</a> class) and I have been modeling the entire UMass campus using SketchUp for Google Earth. This is still an ongoing project because we are continuously refining the models. If you want to see the results, browse to the &#8220;01003&#8243; ZIP code in Google Earth and make sure the 3D Buildings layer is turned on.</p>
<p>Due to the 3-dimensional nature of this talk, I decided to present it in SketchUp instead of Google Docs or Powerpoint&#8230;</p>
<p><iframe src="http://www.youtube.com/embed/heeSxgNQxT0" frameborder="0" width="425" height="350"></iframe><span id="more-3015"></span></p>
<h3>&#8220;Finding Our Favorite Places&#8221;</h3>
<p>In a second presentation, I talked about the <a href="http://www.umass.edu/myfavoriteplaces" target="_blank">UMass Favorite Places</a> project in which people at UMass can show off their favorite places on campus by submitting a placemark and a short description. If you have your own favorite places on the UMass campus, feel free to add your own <a href="http://www.umass.edu/myfavoriteplaces" target="_blank">here</a>.</p>
<div class="iframe-wrapper">
  <iframe src="https://docs.google.com/present/embed?id=dc38hjv8_93hcbdwpc8" frameborder="0" style="height:342px;width:410px;">Please upgrade your browser</iframe>
</div>
<p>&nbsp;</p>
<p><img class="alignnone size-medium wp-image-3070" title="alexander_schreyer_google_geo_summit_9" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/08/alexander_schreyer_google_geo_summit_9-440x330.jpg" alt="alexander_schreyer_google_geo_summit_9" width="440" height="330" /></p>
<p>Overall, my visit to Google was great fun and I enjoyed meeting many similarly-minded people. For a recap of the event, visit my <a title="2011 Google Geo User Summit Recap" href="http://www.alexschreyer.net/cad/2011-google-geo-user-summit-recap/">other post</a>.</p>
<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/alexander_schreyer_google_geo_summit-2.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-3018" title="alexander_schreyer_google_geo_summit (2)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/alexander_schreyer_google_geo_summit-2-266x400.jpg" alt="alexander_schreyer_google_geo_summit (2)" width="266" height="400" /></a></p>
<p><em>(Images by Geoffrey Zub &#8211; @gzub and Nicole Drobeck. Thanks!)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/cad/my-presentations-at-the-google-geo-user-summit-2011-united-states/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011 Google Geo User Summit Recap</title>
		<link>http://www.alexschreyer.net/cad/2011-google-geo-user-summit-recap/</link>
		<comments>http://www.alexschreyer.net/cad/2011-google-geo-user-summit-recap/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 16:34:39 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[SketchUp]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[UMass]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=3011</guid>
		<description><![CDATA[While I am semi-comfortably seated on my United Airlines flight and traversing all three North-American time zones on my way back to Massachusetts, it’s time to recap what happened at the 2011 Google Geo User Summit United States over the last two and a half days*. Overall summary: Wow, was that ever great fun!!! If [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-3033" title="google_geo_user_summit (4)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/google_geo_user_summit-4-440x330.jpg" alt="" width="440" height="330" /></p>
<p>While I am semi-comfortably seated on my United Airlines flight and traversing all three North-American time zones on my way back to Massachusetts, it’s time to recap what happened at the <a href="https://sites.google.com/site/geocommunitysummitusa/" target="_blank">2011 Google Geo User Summit United States</a> over the last two and a half days*. Overall summary: Wow, was that ever great fun!!! If Google is good at two things, then it’s providing useful web-based tools and taking amazing care of their users.</p>
<p><img class="alignnone size-medium wp-image-3030" title="google_geo_user_summit (1)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/google_geo_user_summit-1-440x330.jpg" alt="" width="440" height="330" /></p>
<p>The whole event started on Wednesday evening with a boathouse party at Shoreline Lake in Mountain View. It gave many of us a chance to reconnect with some friends from former summits and make new acquaintances. It was actually quite interesting how many east-coast folks I ended up meeting for the first time on the west-coast.<span id="more-3011"></span></p>
<p>The main focus of the summit was how people used geo-based Google tools. To give you an overview: There are Google’s <a title="MapMaker" href="http://www.google.com/mapmaker">MapMaker</a> (an addition to <a title="Google Maps" href="http://maps.google.com/">Google Maps</a> that lets everyone add content to Google Maps as well as edit inaccurate maps) and <a title="Panoramio" href="http://www.panoramio.com/">Panoramio</a> (a photo-sharing site where all photos are geo-tagged and will therefore show up accurately placed in Google Earth). Then there was 3D modeling, represented by <a title="SketchUp" href="http://sketchup.google.com/">SketchUp</a> (Google’s 3D modeing software) and <a title="BuildingMaker" href="http://sketchup.google.com/3dwh/buildingmaker.html">BuildingMaker</a> (an online tool that allows users to easily create building models from oblique photography) to create 3D objects that are accurately geo-referenced and will therefore show up in <a title="Google Earth" href="http://earth.google.com/">Google Earth</a>. As you likely know if you follow this blog, this third field (especially SketchUp) is my background but MapMaker offers some interesting new avenues that I will likely explore soon.</p>
<p>Attendees at the summit came from all walks of life. There were users that were simply interested in adding their knowledge of their neighborhoods to the official Google Map. Then there were federal employees whose job is to make the Census data presentable and usable. Another attendee was in charge of officially mapping the US-Mexico border. And finally, there was one person whose company had modeled Disney’s parks in 3D for Google Earth (check it out with your kids if you haven’t done so yet &#8211; it’s much cheaper than actually going to the parks). Of course there were many more…</p>
<h3>Day 1</h3>
<p>The official day one started with a morning of keynotes and user presentations. First up was a motivating and insightful presentation by <a title="Ed Parsons" href="http://edparsons.com/">Ed Parsons</a>, Geospatial Technologist at Google. Next came four user presentations, one of them being mine.</p>
<p>It is always interesting to see how people use mapping for their interests or projects (or to help aid organizations in developing countries). Examples of the user talks were: a student who added many walkways to his campus map to help with pedestrian traffic. Another presenter showed how he mapped an entire city in Syria based on satellite photography (and his friends’ knowledge of the place) where there was no map data in Google Maps before. This was followed by presentations about mapping public bike paths in North Carolina, using Panoramio photographs to let people explore places visually, starting mapping parties (so-called <a title="MapUps" href="http://www.google.com/support/mapmaker/bin/static.py%3Fpage%3Dguide.cs%26guide%3D30028%26topic%3D30130">MapUps</a>) and using mapping and building modeling in a K-12 environment. My presentation on the UMass 3D campus building models rounded off this first part (you can see the presentation in my next post).</p>
<p><img class="alignnone size-medium wp-image-3032" title="google_geo_user_summit (3)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/google_geo_user_summit-3-440x330.jpg" alt="" width="440" height="330" /></p>
<p>Next was a talk by <a href="http://en.wikipedia.org/wiki/Brian_McClendon" target="_blank">Brian McClendon</a>, co-founder at Keyhole (the geospatial visualization tool that later became Google Earth) and now a Vice President of Engineering at Google. He outlined the visions of the Geo team and responded to a barrage of questions.</p>
<p>To prevent jealousy I’ll spare you the details of lunch but I <em>must</em> add a mouthwatering picture of the oysters:</p>
<p><img class="alignnone size-medium wp-image-3035" title="google_geo_user_summit (6)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/google_geo_user_summit-6-440x330.jpg" alt="" width="440" height="330" /></p>
<p>In the afternoon we split by discipline into the three topic areas and I went with the 3D modeling and SketchUp group, led by Nicole Drobeck from Google Boulder. (a fun aside in the image below is the “sculpture” on the wall &#8211; it’s a Google search box).</p>
<p><img class="alignnone size-medium wp-image-3037" title="google_geo_user_summit (8)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/google_geo_user_summit-8-440x330.jpg" alt="" width="440" height="330" /></p>
<p>During the group session, some user stories emerged: First is the case of <a href="http://sketchup.google.com/3dwarehouse/search?uq=0539574035104097540830023&amp;styp=c&amp;scoring=m" target="_blank">Peter Sih</a> who somehow managed to model over 2500 buildings for Google Earth. Another one was <a href="http://sketchup.google.com/3dwarehouse/search?uq=1691951213275485674231362&amp;styp=c&amp;scoring=m" target="_blank">Ron Hall</a>’s story whose interest in historic buildings led him to model some of Lexington’s historic monuments &#8211; even without having physically been there! Another story was of <a href="http://sketchup.google.com/3dwarehouse/search?uq=0313865652651515939731250&amp;styp=c&amp;scoring=m" target="_blank">Douglas Willett</a> of <a title="Luna Tech Designs" href="http://www.lunatech-3d.com/">Luna Tech Designs</a> who presented on how his company is providing 3D geo-modeling-related services. I added to these presentation mine in which I described a recent project at UMass, called “My favorite places”. I will post separately about that one later.</p>
<p>Before dinner, we were bussed over to the main Google headquarter, the <a title="Googleplex" href="http://en.wikipedia.org/wiki/Googleplex">Googleplex</a>, where we were given a tour (looks like a pretty fun place to work!). Below are some images of what we saw along the way:</p>
<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/google_geo_user_summit-15.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-3044" title="google_geo_user_summit (15)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/google_geo_user_summit-15-440x85.jpg" alt="" width="440" height="85" /></a></p>
<p><em>The main court at the <a title="Googleplex" href="http://en.wikipedia.org/wiki/Googleplex">Googleplex</a> (it&#8217;s <a href="http://maps.google.com/maps?q=37.423178,-122.086338&amp;ll=37.422027,-122.084059&amp;spn=0.001559,0.002064&amp;sll=37.421861,-122.084407&amp;sspn=0.004409,0.008256&amp;num=1&amp;t=h&amp;z=20" target="_blank">here</a>).</em></p>
<p><img class="alignnone size-medium wp-image-3040" title="google_geo_user_summit (11)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/google_geo_user_summit-11-300x400.jpg" alt="" width="300" height="400" /></p>
<p><em>Google skateboards</em></p>
<p><img class="alignnone size-medium wp-image-3042" title="google_geo_user_summit (13)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/google_geo_user_summit-13-300x400.jpg" alt="" width="300" height="400" /></p>
<p><em>Branded lava-lamps at the reception &#8211; a must-have</em></p>
<p><img class="alignnone size-medium wp-image-3043" title="google_geo_user_summit (14)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/google_geo_user_summit-14-440x330.jpg" alt="" width="440" height="330" /></p>
<p><em>An immersive Google Earth viewer</em></p>
<h3>Day 2</h3>
<p>The second day (Friday) was mainly made up of user-centered discussions. Officially called an “unconference”, the discussion topics are determined in the morning and then experts and non-experts are being mixed in small groups that discuss the various issues that users of the above mentioned products faced. Unfortunately I had to leave half-way through these.</p>
<p><img class="alignnone size-medium wp-image-3045" title="google_geo_user_summit (16)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/google_geo_user_summit-16-400x400.jpg" alt="" width="400" height="400" /></p>
<p>Somehow these conferences always reveal a lot of interesting tidbits, here are some:</p>
<ul>
<li>The new <a title="Audi A8 will have Google Earth" href="http://google-latlong.blogspot.com/2009/12/google-audi-take-google-services-in-car.html">Audi A8 will have Google Earth</a> built-in through a dashboard display (looks a bit like too much information for the driver, though).</li>
<li>A nice mashup combines Google Maps, YouTube videos and MP3 embedding: <a href="http://www.google.ru/intl/ru/landing/transsib/en.html" target="_blank">Moscow-Vladivostok transsiberian train journey</a>. Very meditative&#8230;</li>
<li>Most people use Google Maps via the API (vs. <a title="the web version" href="http://maps.google.com/">the web version</a>).</li>
<li>Watch live-updating of Google Maps: <a href="http://www.google.com/mapmaker/pulse">http://www.google.com/mapmaker/pulse</a></li>
<li>Google Earth has been downloaded so many times that it ranks in distribution close to the big web browsers.</li>
<li>Traffic-speed data on Google’s online maps uses anonymously-collected velocity data from travelling Android phones &#8211; a great idea (as long as it remains anonymous).</li>
<li>Google has a fleet of <a href="https://picasaweb.google.com/alexschreyer/2011GoogleGeoSummit#5634880934548928882" target="_blank">company bikes</a> that look like someone threw E.T. out of the basket and painted the whole thing in bright primary colors. Apparently they are all over Mountain View.</li>
<li>Google employees have access to an amazing array of fun stuff. My way to the bathroom led me past a bowling alley and a dance studio, for example.</li>
</ul>
<div><img class="alignnone size-medium wp-image-3031" title="google_geo_user_summit (2)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/07/google_geo_user_summit-2-300x400.jpg" alt="" width="300" height="400" /></div>
<p><em>Me and my pin</em></p>
<p>*This was written en-route but edited a week later.</p>
<p>Here are my pictures from the event:</p>
<p><object width="400" height="267" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="https://picasaweb.google.com/s/c/bin/slideshow.swf" /><param name="flashvars" value="host=picasaweb.google.com&amp;noautoplay=1&amp;hl=en_US&amp;feat=flashalbum&amp;RGB=0x000000&amp;feed=https%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Falexschreyer%2Falbumid%2F5634880013162089169%3Falt%3Drss%26kind%3Dphoto%26hl%3Den_US" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" /><embed width="400" height="267" type="application/x-shockwave-flash" src="https://picasaweb.google.com/s/c/bin/slideshow.swf" flashvars="host=picasaweb.google.com&amp;noautoplay=1&amp;hl=en_US&amp;feat=flashalbum&amp;RGB=0x000000&amp;feed=https%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Falexschreyer%2Falbumid%2F5634880013162089169%3Falt%3Drss%26kind%3Dphoto%26hl%3Den_US" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></p>
<p>(Disclosure: Google provided food and other considerations for me)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/cad/2011-google-geo-user-summit-recap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Osama&#8217;s house in 3D</title>
		<link>http://www.alexschreyer.net/cad/osamas-house-in-3d/</link>
		<comments>http://www.alexschreyer.net/cad/osamas-house-in-3d/#comments</comments>
		<pubDate>Mon, 09 May 2011 21:07:36 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[SketchUp]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2941</guid>
		<description><![CDATA[Please upgrade your browser One of the greatest benefits of having a 3D modeler like SketchUp is that creating and sharing explorable representations of real-world objects is extremely easy. It was therefore just a matter of time before Osama bin Laden&#8217;s hideout in Abbottabad appeared on Google Earth. So before the real building gets taken [...]]]></description>
			<content:encoded><![CDATA[<div class="iframe-wrapper">
  <iframe src="http://sketchup.google.com/3dwarehouse/mini?mid=56c9046a3eb868278a124f4737362fcd&amp;etyp=im&amp;width=400&amp;height=300" frameborder="0" style="height:340px;width:420px;">Please upgrade your browser</iframe>
</div>
<p>One of the greatest benefits of having a 3D modeler like SketchUp is that creating and sharing explorable representations of real-world objects is extremely easy. It was therefore just a matter of time before Osama bin Laden&#8217;s hideout in Abbottabad appeared on Google Earth. So before the real building gets taken down, and for the architecturally-curious, here are a few relevant links:</p>
<ul>
<li><a href="http://sketchup.google.com/3dwarehouse/details?mid=56c9046a3eb868278a124f4737362fcd" target="_blank">Abbottabad Mansion</a> &#8211; The SketchUp model that made it into Google Earth</li>
<li><a href="http://sketchup.google.com/3dwarehouse/details?mid=ae13012e13ea23bcacd0859bee646aa3&amp;prevstart=0" target="_blank">Osama Bin Laden&#8217;s hideout compound</a> &#8211; Another model that includes trees and shows the context</li>
<li><a href="http://www.bbc.co.uk/news/world-south-asia-13332623" target="_blank">The plans of Bin Laden&#8217;s compound</a> &#8211; Somehow the BBC found these original plans for the house. They even include foundation details but exclude the later added second floor.</li>
<li><a href="http://maps.google.com/maps/ms?ie=UTF8&amp;oe=UTF8&amp;msa=0&amp;msid=202480243739982020528.0004a24d313dac4abab96&amp;ll=34.169233,73.242323&amp;spn=0.001857,0.003484&amp;t=h&amp;z=19" target="_blank">Location in Google Maps</a></li>
</ul>
<p>(via SuperModelers discussions)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/cad/osamas-house-in-3d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Features in Revit 2012</title>
		<link>http://www.alexschreyer.net/cad/new-features-in-revit-2012/</link>
		<comments>http://www.alexschreyer.net/cad/new-features-in-revit-2012/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 13:46:47 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[AutoCAD]]></category>
		<category><![CDATA[Autodesk]]></category>
		<category><![CDATA[BIM]]></category>
		<category><![CDATA[Revit]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2909</guid>
		<description><![CDATA[Yesterday, Autodesk announced the new features for their 2012 roster of architectural software. Unfortunately I wasn&#8217;t able to watch the webcast, but there is ample chatter in the blogosphere this morning. To keep you up-to-date, here is a good reading list for Revit 2012: Autodesk Revit &#8211; David Light&#8217;s exhaustive overview of the Architectural enhancements [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-2910" title="Revit 2012" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/03/revit-2012-440x266.png" alt="Revit 2012" width="440" height="266" /></p>
<p>Yesterday, Autodesk announced the new features for their 2012 roster of architectural software. Unfortunately I wasn&#8217;t able to watch the webcast, but there is ample chatter in the blogosphere this morning. To keep you up-to-date, here is a good reading list for Revit 2012:</p>
<ul>
<li><a href="http://autodesk-revit.blogspot.com/2011/03/autodesk-revit-architecture-2012.html" target="_blank">Autodesk Revit</a> &#8211; David Light&#8217;s exhaustive overview of the Architectural enhancements</li>
<li><a href="http://bimboom.blogspot.com/" target="_blank">Bim Boom</a> &#8211; The post-a-minute coverage of anything related to Revit</li>
<li><a href="http://do-u-revit.blogspot.com/2011/03/sneak-peek-at-revit-2012.html" target="_blank">Do U Revit?</a> &#8211; Overview for all three flavors of Revit</li>
<li><a href="http://jasongrant.squarespace.com/jason-grant-blog/2011/3/21/whats-in-store-for-revit-2012.html" target="_blank">Jason Grant</a> &#8211; Even more&#8230;</li>
</ul>
<p>Since I am not using the work sharing tools in my classes, I am mostly looking forward to some of the modeling improvements and the assembly/part features.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/cad/new-features-in-revit-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QR codes everywhere!</title>
		<link>http://www.alexschreyer.net/cad/qr-codes-everywhere/</link>
		<comments>http://www.alexschreyer.net/cad/qr-codes-everywhere/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 15:58:26 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web & Programming]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[SketchUp]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2826</guid>
		<description><![CDATA[Please upgrade your browser SketchUp QR from Alexander Schreyer on Vimeo. As you may have noticed, I have been experimenting with QR codes lately. There&#8217;s just so much fun you can have with these little black-and-white icons. For your Friday enjoyment, here is a list of where I have used them so far: 3D QR [...]]]></description>
			<content:encoded><![CDATA[<div class="iframe-wrapper">
  <iframe src="http://player.vimeo.com/video/20632145?portrait=0&amp;amp;color=9dca68" frameborder="0" style="height:450px;width:450px;">Please upgrade your browser</iframe>
</div>
<p><a href="http://vimeo.com/20632145">SketchUp QR</a> from <a href="http://vimeo.com/alexschreyer">Alexander Schreyer</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>As you may have noticed, I have been experimenting with QR codes lately. There&#8217;s just so much fun you can have with these little black-and-white icons. For your Friday enjoyment, here is a list of where I have used them so far:</p>
<h3>3D QR code</h3>
<p>The example video above is simply a vectorized QR code with randomly extruded faces.</p>
<h3>T-Shirts</h3>
<p><a href="http://alexschreyer.spreadshirt.com/"><img class="alignnone size-full wp-image-2793" title="Pi" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/02/pi-qr-code-with-small-numbers-in-code.png" alt="Pi" width="190" height="190" /></a></p>
<p>A fun way to say something on a shirt without displaying it as letters. Also a great way to link to your website. It just looks a bit nerdy&#8230;</p>
<h3>Signage</h3>
<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2011/03/IMG_0348.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-2829" title="ECO Sign" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/03/IMG_0348-300x400.jpg" alt="ECO Sign" width="300" height="400" /></a></p>
<p>I realized that there was no good way to link visitors in our building to our <a href="http://eco.umass.edu/">departmental website</a>. Therefore, a good-size QR code (filled with a grass pattern) got added to the signage. In the next iteration, I think I&#8217;ll make it a little smaller (and also add the URL).</p>
<p>Want to make your own? Just google &#8220;<a href="http://www.google.com/search?q=QR+code" target="_blank">QR code</a>&#8221; and use any of the free generators out there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/cad/qr-codes-everywhere/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rendering in SketchUp &#8211; a Video Overview</title>
		<link>http://www.alexschreyer.net/cad/rendering-in-sketchup-a-video-overview/</link>
		<comments>http://www.alexschreyer.net/cad/rendering-in-sketchup-a-video-overview/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 16:14:55 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Kerkythea]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[SketchUp]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2800</guid>
		<description><![CDATA[Interior perspective by senorjerome, on Flickr (CC) I meant to create a concise visual comparison of all available rendering software for SketchUp for quite a while now. To keep things organized I only added one video per software as well as links to the manufacturer&#8217;s websites and the current (February 2011) published cost. All prices are [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-2811" title="interior-rendering" src="http://www.alexschreyer.net/blog/wp-content/uploads/2011/02/interior-rendering-440x218.jpg" alt="" width="440" height="218" /></p>
<p><em>Interior perspective by <a title="2010.12.14 - interior perspective soffit and grass tray by senorjerome, on Flickr" href="http://www.flickr.com/photos/historicallyinaccurate/5410986940/">senorjerome</a>, on Flickr (CC)</em></p>
<p>I meant to create a concise visual comparison of all available rendering software for SketchUp for quite a while now. To keep things organized I only added one video per software as well as links to the manufacturer&#8217;s websites and the current (February 2011) published cost. All prices are in US $ for single-seat licenses, taken from the manufacturers&#8217; websites. Many of these packages are also offered with multi-seat and educational discounts. Because these are not always easy to find, you will have to check them out directly.</p>
<p>The videos are typically made by the manufacturers and either give an overview of the software or where that wasn&#8217;t available are illustrative showreels. Feel free to alert me of better videos, other software and updates in the comments.</p>
<p>Here&#8217;s the list:<span id="more-2800"></span></p>
<h3>3D Paintbrush</h3>
<p><strong>WIN - <a href="http://www.3dpaintbrush.com/" target="_blank">Website</a> - <a href="http://www.3dpaintbrush.com/content/featurelist.aspx" target="_blank">Features</a> &#8211; Cost:</strong> free trial, $99 full version</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/7EdbP47cfdE&amp;feature" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/7EdbP47cfdE&amp;feature"></embed></object></p>
<h3>Artlantis</h3>
<p><strong>WIN/MAC - <a href="http://www.artlantis.com/index.php?page=products/plugins/sketchup" target="_blank">Website</a> &#8211; <a href="http://www.artlantis.com/index.php?page=products/studio/index" target="_blank">Features</a> &#8211; Cost: </strong>free trial, $765 full version (rendering software)</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/GyIvTRTedT4&amp;feature" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/GyIvTRTedT4&amp;feature"></embed></object></p>
<h3>IDX Renditioner</h3>
<p><strong>WIN/MAC - <a href="http://www.idx-design.com/IDX/IDXRenditioner/tabid/709/Default.aspx" target="_blank">Website</a> - <a href="http://www.idx-design.com/IDX/IDXRenditioner/RenditionerProductFeatures/tabid/711/Default.aspx" target="_blank">Features</a> &#8211; Cost:</strong> free trial, free size-limited version, $99.99 full license</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/pOia4-lFX70" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/pOia4-lFX70"></embed></object></p>
<h3>Indigo</h3>
<p><strong>WIN/MAC/Linux - <a href="http://www.indigorenderer.com/sketchup/" target="_blank">Website</a> - <a href="http://www.indigorenderer.com/features" target="_blank">Features</a> &#8211; Cost: </strong>free trial, $820 full license</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/PccWJ-zxlQw&amp;feature" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/PccWJ-zxlQw&amp;feature"></embed></object></p>
<h3>IRender nXt</h3>
<p><strong>WIN - <a href="http://www.renderplus.com/wk/IRender_nXt_w.htm" target="_blank">Website</a> - <a href="http://www.renderplus.com/wk/IRender_nXt_Features_w.htm" target="_blank">Features</a> &#8211; Cost: </strong>free trial, $499 full license</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/ytjDO8Y06_s&amp;feature" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/ytjDO8Y06_s&amp;feature"></embed></object></p>
<h3>Kerkythea</h3>
<p><strong><strong>WIN/MAC/Linux &#8211; </strong><a href="http://www.kerkythea.net/joomla/" target="_blank">Website</a> - <a href="http://www.kerkythea.net/joomla/index.php?option=com_content&amp;task=view&amp;id=14&amp;Itemid=48" target="_blank">Features</a> &#8211; Cost:</strong> free</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/9amHpQwBM3Y&amp;feature" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/9amHpQwBM3Y&amp;feature"></embed></object></p>
<h3>LightUp</h3>
<p><strong>WIN/MAC - <a href="http://www.light-up.co.uk/" target="_blank">Website</a> - <a href="http://www.light-up.co.uk/index.php?t=features" target="_blank">Features</a> &#8211; Cost:</strong> free trial, $149 full license</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/35NMvA_Asis" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/35NMvA_Asis"></embed></object></p>
<h3>Maxwell</h3>
<p><strong>WIN/MAC/Linux &#8211; <a href="http://www.maxwellrender.com/index.php" target="_blank">Website</a> &#8211; <a href="http://www.maxwellrender.com/mw2_features.php" target="_blank">Features</a> (<a href="http://think.maxwellrender.com/tutorialsadvanced.php?category=28&amp;menu=steps" target="_blank">SU plugin</a>) &#8211; Cost: </strong>free trial, $995 full license</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/QaQKHpLg5Rs&amp;feature" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/QaQKHpLg5Rs&amp;feature"></embed></object></p>
<h3>nXtRender</h3>
<p><strong>WIN - <a href="http://www.renderplus.com/wk/NXtRender_w.htm" target="_blank">Website</a> - <a href="http://www.renderplus.com/wk/NXtRender_Features_w.htm" target="_blank">Features</a> &#8211; Cost: </strong>free trial, $149 full license</p>
<p>This is the low-cost version of IRender nXt. There doesn&#8217;t seem to be a YouTube video but there&#8217;s <a href="http://www.renderplus.com/videos/getting%20started%20with%20nxtrender/getting%20started%20with%20nxtrender.html" target="_blank">a video</a> on their website.</p>
<h3>Podium</h3>
<p><strong>WIN/MAC - <a href="http://www.suplugins.com/" target="_blank">Website</a> - <a href="http://www.suplugins.com/supodium-v2.php" target="_blank">Features</a> &#8211; Cost: </strong>free trial, $198 full license</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/Tq0Ay-S_TwM" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/Tq0Ay-S_TwM"></embed></object></p>
<h3>Render[in]</h3>
<p><strong>WIN/MAC - <a href="http://www.renderin.com/" target="_blank">Website</a> - <a href="http://www.renderin.com/features" target="_blank">Features</a> &#8211; Cost: </strong>free trial, $160 full license</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/NvzzmaFhR7k" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/NvzzmaFhR7k"></embed></object></p>
<h3>Shaderlight</h3>
<p><strong>WIN/MAC - <a href="http://www.artvps.com/" target="_blank">Website</a> - <a href="http://www.artvps.com/content/shaderlight/sketchup/technical-specifications" target="_blank">Features</a> &#8211; Cost:</strong> free trial, $199 full license</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/wcJb24Rt3hE" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/wcJb24Rt3hE"></embed></object></p>
<h3>Thea</h3>
<p><strong>WIN/MAC/Linux - <a href="http://www.thearender.com/" target="_blank">Website</a> - <a href="http://www.thearender.com/cms/index.php/features.html" target="_blank">Features</a> &#8211; Cost:</strong> free trial, $214.19 full license + $26.34 for SketchUp exporter (converted from Euros)</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/C2Zo4BZGq-c" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/C2Zo4BZGq-c"></embed></object></p>
<h3>Twilight</h3>
<p><strong>WIN - <a href="http://www.twilightrender.com/" target="_blank">Website</a> - <a href="http://www.twilightrender.com/features" target="_blank">Features</a> &#8211; Cost:</strong> free trial, $99 full license</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/JKLp1q4b3YU" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/JKLp1q4b3YU"></embed></object></p>
<p>There are more videos on <a href="http://www.twilightrender.com/screenshots/videos" target="_blank">their website</a>.</p>
<h3>VRay</h3>
<p><strong>WIN/MAC - <a href="http://www.vray.com/vray_for_sketchup/" target="_blank">Website</a> - <a href="http://www.vray.com/vray_for_sketchup/manual/index.shtml" target="_blank">Features</a> &#8211; Cost:</strong> free trial, $799 full license</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/cxOCVyW9BlQ" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/cxOCVyW9BlQ"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/cad/rendering-in-sketchup-a-video-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merry Christmas and a Happy New Year 2011!</title>
		<link>http://www.alexschreyer.net/misc/merry-christmas-and-a-happy-new-year-2011/</link>
		<comments>http://www.alexschreyer.net/misc/merry-christmas-and-a-happy-new-year-2011/#comments</comments>
		<pubDate>Tue, 21 Dec 2010 16:21:18 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Timber Engineering]]></category>
		<category><![CDATA[Web & Programming]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[SketchUp]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wood]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2763</guid>
		<description><![CDATA[Now that the year is almost over, it&#8217;s time to step back and look at what we all built over the past weeks&#8230; Wherever you are and whatever you celebrate, enjoy your holidays and some relaxing time with your families. I wish you all the best for the new year! Cheers, Alex P.S.: Yes, it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/12/Construction-Tree-Small.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-2764" title="The Construction Tree" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/12/Construction-Tree-Small-440x293.jpg" alt="The Construction Tree" width="440" height="293" /></a></p>
<p>Now that the year is almost over, it&#8217;s time to step back and look at what we all built over the past weeks&#8230;</p>
<p>Wherever you are and whatever you celebrate, enjoy your holidays and some relaxing time with your families. I wish you all the best for the new year!</p>
<p>Cheers,<br />
 <em>Alex</em></p>
<p>P.S.: Yes, it&#8217;s another SketchUp Christmas model. This time I had fun using the new solids tools.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/misc/merry-christmas-and-a-happy-new-year-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

