<?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>Digital Tools For Architects &#187; Panorama</title>
	<atom:link href="http://www.digitaltoolsforarchitects.com/tag/panorama/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.digitaltoolsforarchitects.com</link>
	<description>The Architect&#039;s Source for Tutorials, Techniques, Tips &#38; Tricks</description>
	<lastBuildDate>Thu, 02 Feb 2012 03:07:24 +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>Cynthia Anne McLean Exercise 2.4</title>
		<link>http://www.digitaltoolsforarchitects.com/2011/09/cynthia-anne-mclean-exercise-2-4-2/</link>
		<comments>http://www.digitaltoolsforarchitects.com/2011/09/cynthia-anne-mclean-exercise-2-4-2/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 21:01:16 +0000</pubDate>
		<dc:creator>Cynthia</dc:creator>
				<category><![CDATA[Exercise 2.4]]></category>
		<category><![CDATA[Exercises]]></category>
		<category><![CDATA[DVC ET courtyard]]></category>
		<category><![CDATA[Panorama]]></category>

		<guid isPermaLink="false">http://www.digitaltoolsforarchitects.com/?p=16070</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<html> 
 <head> 
 <script type="text/javascript">
const 	FPS = 30;
const	DEG2RAD=Math.PI/180.0;

//Canvas to which to draw the panorama
var		pano_canvas=null;
 
//Event state
var		mouseIsDown=false;
var		mouseDownPosLastX=0;
var		mouseDownPosLastY=0;
var		displayInfo=false;
var		highquality=true;

//Camera state
var		cam_heading=90.0;
var		cam_pitch=90.0;
var 	cam_fov=90;

//Load image 
var img_buffer=null;
var img = new Image();
img.onload = imageLoaded;
img.src = "http://www.digitaltoolsforarchitects.com/wp-content/uploads/2011/09/DVC_ET_Courtyard_web4.jpg";		


function init_pano(canvasid){
	//get canvas and set up call backs
	pano_canvas = document.getElementById('canvas');
	pano_canvas.onmousedown = mouseDown;
	window.onmousemove = mouseMove;
	window.onmouseup = mouseUp;
	window.onmousewheel = mouseScroll;
	window.onkeydown = keyDown;
	draw();
	//setInterval(draw, 1000/FPS);
	}
	
function imageLoaded(){
	var   buffer = document.createElement("canvas");
	var   buffer_ctx = buffer.getContext ("2d");
	
	//set buffer size
	buffer.width = img.width;
	buffer.height = img.height;
 	
 	//draw image
	buffer_ctx.drawImage(img,0,0);
 		
 	//get pixels
 	var buffer_imgdata = buffer_ctx.getImageData(0, 0,buffer.width,buffer.height);
 	var buffer_pixels = buffer_imgdata.data;
 		
 	//convert imgdata to float image buffer
 	img_buffer = new Array(img.width*img.height*3);
 	for(var i=0,j=0;i<buffer_pixels.length;i+=4, j+=3){
		img_buffer[j] 	= buffer_pixels[i];
		img_buffer[j+1] = buffer_pixels[i+1];
		img_buffer[j+2] = buffer_pixels[i+2];
 		}
	}


function mouseDown(e){
	mouseIsDown=true;
	mouseDownPosLastX=e.clientX;
	mouseDownPosLastY=e.clientY;	
}

function mouseMove(e){
	if(mouseIsDown==true){
		cam_heading-=(e.clientX-mouseDownPosLastX);
		cam_pitch+=0.5*(e.clientY-mouseDownPosLastY);
		cam_pitch=Math.min(180,Math.max(0,cam_pitch));
		mouseDownPosLastX=e.clientX;
		mouseDownPosLastY=e.clientY;	
		draw();
		}
}

function mouseUp(e){
	mouseIsDown=false;
	draw();
}

function mouseScroll(e){
	cam_fov+=e.wheelDelta/120;
	cam_fov=Math.min(90,Math.max(30,cam_fov));
	draw();
}

function keyDown(e){
	if(e.keyCode==73){	//i==73 Info
		displayInfo = !displayInfo;
		draw();
		}
}

function renderPanorama(canvas){
	if(canvas!=null && img_buffer!=null){
		var ctx = canvas.getContext("2d");
		var imgdata = ctx.getImageData(0, 0,canvas.width,canvas.height);
		var pixels = imgdata.data;
	
		var src_width=img.width;
		var src_height=img.height;
		var dest_width=canvas.width;
		var dest_height=canvas.height;
		
		//calculate camera plane
		var theta_fac=src_height/Math.PI;
		var phi_fac=src_width*0.5/Math.PI
		var ratioUp=2.0*Math.tan(cam_fov*DEG2RAD/2.0);
		var ratioRight=ratioUp*1.33;
		var camDirX=Math.sin(cam_pitch*DEG2RAD)*Math.sin(cam_heading*DEG2RAD);
		var camDirY=Math.cos(cam_pitch*DEG2RAD);
		var camDirZ=Math.sin(cam_pitch*DEG2RAD)*Math.cos(cam_heading*DEG2RAD);
		var camUpX=ratioUp*Math.sin((cam_pitch-90.0)*DEG2RAD)*Math.sin(cam_heading*DEG2RAD);
		var camUpY=ratioUp*Math.cos((cam_pitch-90.0)*DEG2RAD);
		var camUpZ=ratioUp*Math.sin((cam_pitch-90.0)*DEG2RAD)*Math.cos(cam_heading*DEG2RAD);
		var camRightX=ratioRight*Math.sin((cam_heading-90.0)*DEG2RAD);
		var camRightY=0.0;
		var camRightZ=ratioRight*Math.cos((cam_heading-90.0)*DEG2RAD);
		var camPlaneOriginX=camDirX + 0.5*camUpX - 0.5*camRightX;
		var camPlaneOriginY=camDirY + 0.5*camUpY - 0.5*camRightY;
		var camPlaneOriginZ=camDirZ + 0.5*camUpZ - 0.5*camRightZ;
		
		//render image
		var	i,j;
		for(i=0;i<dest_height;i++){
			for(j=0;j<dest_width;j++){
				var	fx=j/dest_width;
				var	fy=i/dest_height;
				
				var	rayX=camPlaneOriginX + fx*camRightX - fy*camUpX;
				var	rayY=camPlaneOriginY + fx*camRightY - fy*camUpY;
				var	rayZ=camPlaneOriginZ + fx*camRightZ - fy*camUpZ;
				var	rayNorm=1.0/Math.sqrt(rayX*rayX + rayY*rayY + rayZ*rayZ);
				
				var	theta=Math.acos(rayY*rayNorm);
    			var	phi=Math.atan2(rayZ,rayX) + Math.PI;
    			var	theta_i=Math.floor(theta_fac*theta);
    			var	phi_i=Math.floor(phi_fac*phi);
    			
    			var	dest_offset=4*(i*dest_width+j);
				var	src_offset=3*(theta_i*src_width + phi_i);
				
				pixels[dest_offset]     = img_buffer[src_offset];
				pixels[dest_offset+1]   = img_buffer[src_offset+1];
				pixels[dest_offset+2]   = img_buffer[src_offset+2];
				//pixels[dest_offset+3] = img_buffer[src_offset+3];
				}
			}
 		
 		//upload image data
 		ctx.putImageData(imgdata, 0, 0);
	}
}


function drawRoundedRect(ctx,ox,oy,w,h,radius){
	ctx.beginPath();
	ctx.moveTo(ox + radius,oy);
	ctx.lineTo(ox + w - radius,oy);
	ctx.arc(ox +w-radius,oy+ radius, radius,-Math.PI/2,0, false);
	ctx.lineTo(ox + w,oy + h - radius);
	ctx.arc(ox +w-radius,oy + h - radius, radius,0,Math.PI/2, false);
	ctx.lineTo(ox + radius,oy + h);
	ctx.arc(ox + radius,oy + h - radius, radius,Math.PI/2,Math.PI, false);
	ctx.lineTo(ox,oy + radius);
	ctx.arc(ox + radius,oy + radius, radius,Math.PI,3*Math.PI/2, false);
	ctx.fill();	
}


function draw(){
    if(pano_canvas!=null && pano_canvas.getContext!=null){
    	var ctx = pano_canvas.getContext("2d");
    	
    	//clear canvas
    	ctx.fillStyle = "rgba(0, 0, 0, 1)";
    	ctx.fillRect(0,0,pano_canvas.width,pano_canvas.height);
			
		//render paromana direct
		var startTime = new Date();
			renderPanorama(pano_canvas);
		var endTime = new Date();
		
		//draw info text
		if(displayInfo==true){	
			ctx.fillStyle = "rgba(255,255,255,0.75)";
			drawRoundedRect(ctx,20,pano_canvas.height-60-20,180,60,7);
			
			ctx.fillStyle = "rgba(0, 0, 0, 1)";
			ctx.font="10pt helvetica";
			ctx.fillText("Canvas = " +  pano_canvas.width + "x" + pano_canvas.height,30,pano_canvas.height-60);
			ctx.fillText("Image size = " + img.width + "x" + img.height,30,pano_canvas.height-45);
			ctx.fillText("FPS = " + (1000.0/(endTime.getTime()-startTime.getTime())).toFixed(1),30,pano_canvas.height-30);
			}
    	}
   }
   
</script> 
 </head> 
 <body onload="init_pano('canvas')"> 
   <canvas id="canvas" width="500" height="400"> 
   	<p>Your browser does not support the HTML5 canvas element.</p> 
   </canvas> 
 </body> 
</html>
<p><a href="http://www.digitaltoolsforarchitects.com/2011/09/cynthia-anne-mclean-exercise-2-4-2/dvc_et_courtyard_web-4/" rel="attachment wp-att-16071"><img class="alignnone size-full wp-image-16071" src="http://www.digitaltoolsforarchitects.com/wp-content/uploads/2011/09/DVC_ET_Courtyard_web3.jpg" alt="" width="2048" height="1024" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltoolsforarchitects.com/2011/09/cynthia-anne-mclean-exercise-2-4-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Exercise 2.4: Marlon Cruz&#8217;s Panorama</title>
		<link>http://www.digitaltoolsforarchitects.com/2010/09/exercise-2-4-marlon-cruzs-panorama/</link>
		<comments>http://www.digitaltoolsforarchitects.com/2010/09/exercise-2-4-marlon-cruzs-panorama/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 19:55:22 +0000</pubDate>
		<dc:creator>m-cruz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Art Building]]></category>
		<category><![CDATA[Exercise 2.4]]></category>
		<category><![CDATA[Marlon Cruz]]></category>
		<category><![CDATA[Panorama]]></category>
		<category><![CDATA[Quad]]></category>

		<guid isPermaLink="false">http://www.digitaltoolsforarchitects.com/?p=5006</guid>
		<description><![CDATA[ [...]]]></description>
			<content:encoded><![CDATA[<p>Hey everyone here&#8217;s my panorama. I took it while walking towards the DVC quad from the Art Building. Hope you like it!</p>
<p><a rel="attachment wp-att-5020" href="http://www.digitaltoolsforarchitects.com/2010/09/exercise-2-4-marlon-cruzs-panorama/ex-2-4-marlons-panorama-2/"><img class="alignnone size-full wp-image-5020" src="http://www.digitaltoolsforarchitects.com/wp-content/uploads/2010/09/Ex.-2.4-Marlons-Panorama1.jpg" alt="" width="600" height="127" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltoolsforarchitects.com/2010/09/exercise-2-4-marlon-cruzs-panorama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>panorama</title>
		<link>http://www.digitaltoolsforarchitects.com/2010/09/panorama/</link>
		<comments>http://www.digitaltoolsforarchitects.com/2010/09/panorama/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 19:35:57 +0000</pubDate>
		<dc:creator>adavies</dc:creator>
				<category><![CDATA[Exercises]]></category>
		<category><![CDATA[alex davies]]></category>
		<category><![CDATA[Exercise 2.4]]></category>
		<category><![CDATA[Panorama]]></category>
		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://www.digitaltoolsforarchitects.com/?p=4981</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-4982" href="http://www.digitaltoolsforarchitects.com/2010/09/panorama/final-panoramic/"><img class="aligncenter size-large wp-image-4982" src="http://www.digitaltoolsforarchitects.com/wp-content/uploads/2010/09/Final-Panoramic-1024x390.jpg" alt="" width="1024" height="390" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltoolsforarchitects.com/2010/09/panorama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kurt Campos- Exercise 2.4 Panorama</title>
		<link>http://www.digitaltoolsforarchitects.com/2010/09/kurt-campos-exercise-2-4-panorama/</link>
		<comments>http://www.digitaltoolsforarchitects.com/2010/09/kurt-campos-exercise-2-4-panorama/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 19:32:06 +0000</pubDate>
		<dc:creator>kurt campos</dc:creator>
				<category><![CDATA[Exercises]]></category>
		<category><![CDATA[Exercise 2.4]]></category>
		<category><![CDATA[Panorama]]></category>
		<category><![CDATA[suisun city waterfront]]></category>

		<guid isPermaLink="false">http://www.digitaltoolsforarchitects.com/?p=4962</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-4968" href="http://www.digitaltoolsforarchitects.com/2010/09/kurt-campos-exercise-2-4-panorama/exercise-2_4_web/"><img class="aligncenter size-full wp-image-4968" src="http://www.digitaltoolsforarchitects.com/wp-content/uploads/2010/09/Exercise-2_4_web.jpg" alt="" width="240" height="87" /></a><a rel="attachment wp-att-4989" href="http://www.digitaltoolsforarchitects.com/2010/09/kurt-campos-exercise-2-4-panorama/exercise-2_4-_web2/"><img class="aligncenter size-medium wp-image-4989" src="http://www.digitaltoolsforarchitects.com/wp-content/uploads/2010/09/Exercise-2_4._web2-300x77.jpg" alt="" width="300" height="77" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltoolsforarchitects.com/2010/09/kurt-campos-exercise-2-4-panorama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xue Yuan Phun (Exercise 2.4)</title>
		<link>http://www.digitaltoolsforarchitects.com/2010/09/xue-yuan-phun-exercise-2-4/</link>
		<comments>http://www.digitaltoolsforarchitects.com/2010/09/xue-yuan-phun-exercise-2-4/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 19:23:15 +0000</pubDate>
		<dc:creator>XYphun</dc:creator>
				<category><![CDATA[Exercise 2.4]]></category>
		<category><![CDATA[excercise 2.4]]></category>
		<category><![CDATA[Panorama]]></category>
		<category><![CDATA[xue yuan]]></category>

		<guid isPermaLink="false">http://www.digitaltoolsforarchitects.com/?p=4944</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-4954" href="http://www.digitaltoolsforarchitects.com/2010/09/xue-yuan-phun-exercise-2-4/panorama2-3/"><img class="alignnone size-full wp-image-4954" src="http://www.digitaltoolsforarchitects.com/wp-content/uploads/2010/09/Panorama21.jpg" alt="" width="600" height="206" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltoolsforarchitects.com/2010/09/xue-yuan-phun-exercise-2-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Digital tools for Architects</title>
		<link>http://www.digitaltoolsforarchitects.com/2010/08/digital-tools-for-architects/</link>
		<comments>http://www.digitaltoolsforarchitects.com/2010/08/digital-tools-for-architects/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 19:21:52 +0000</pubDate>
		<dc:creator>eurquiaga</dc:creator>
				<category><![CDATA[Exercise 1.1]]></category>
		<category><![CDATA[Exercises]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[architecture blogs]]></category>
		<category><![CDATA[Course Website Dashboard]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Design innovations]]></category>
		<category><![CDATA[Panorama]]></category>
		<category><![CDATA[panoramic]]></category>
		<category><![CDATA[Panoramic photography]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.digitaltoolsforarchitects.com/?p=3816</guid>
		<description><![CDATA[ [...]]]></description>
			<content:encoded><![CDATA[<p>Hello my name is Erika Urquiaga, looking forward to learn and expand my knowledge in graphics by using different software like Aperture, sketchup, indesign, etc and at the end to have a nice portfolio <img src='http://www.digitaltoolsforarchitects.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> )</p>
<p>This is one of the most amazing and illustrated magazine that I ever check in the web and read on a hard copy, besides the adds on the right hand side and the subscription on the bottom this magazine will show you houses and places that you don&#8217;t even have a clue that ever exist or been design, it has a section that has different videos which you can see and hear the interviews to the most famous architect and interior designers in the world, I recommend you to give it a look if you didn&#8217;t have the chance yet. <a href="http://www.architecturaldigest.com/">http://www.architecturaldigest.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltoolsforarchitects.com/2010/08/digital-tools-for-architects/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hajeer Jomehri Exercise 2.4</title>
		<link>http://www.digitaltoolsforarchitects.com/2009/09/hajeer-jomehri-exercise-2-4/</link>
		<comments>http://www.digitaltoolsforarchitects.com/2009/09/hajeer-jomehri-exercise-2-4/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 03:50:30 +0000</pubDate>
		<dc:creator>hjomehri</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Exercise 2.4]]></category>
		<category><![CDATA[Hajeer Jomehri]]></category>
		<category><![CDATA[Panorama]]></category>
		<category><![CDATA[Panoramic photography]]></category>

		<guid isPermaLink="false">http://www.digitaltoolsforarchitects.com/?p=783</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-784" src="http://www.digitaltoolsforarchitects.com/wp-content/uploads/2009/09/20090907_hjomehri_exercise2.4.jpg" alt="20090907_hjomehri_exercise2.4" width="600" height="148" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltoolsforarchitects.com/2009/09/hajeer-jomehri-exercise-2-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Exercise 2.4: Dean Mai</title>
		<link>http://www.digitaltoolsforarchitects.com/2009/09/exercise-2-4-dean-mai/</link>
		<comments>http://www.digitaltoolsforarchitects.com/2009/09/exercise-2-4-dean-mai/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 20:14:55 +0000</pubDate>
		<dc:creator>dmai</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Dean Mai]]></category>
		<category><![CDATA[dmai]]></category>
		<category><![CDATA[Exercise 2.4]]></category>
		<category><![CDATA[Panorama]]></category>

		<guid isPermaLink="false">http://www.digitaltoolsforarchitects.com/?p=774</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-775" src="http://www.digitaltoolsforarchitects.com/wp-content/uploads/2009/09/BeachPanorama_web1.jpg" alt="BeachPanorama_web" width="600" height="104" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltoolsforarchitects.com/2009/09/exercise-2-4-dean-mai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20090903_bmartinez_Exercise2.4.DTA</title>
		<link>http://www.digitaltoolsforarchitects.com/2009/09/20090903_bmartinez_exercise2-4-dta/</link>
		<comments>http://www.digitaltoolsforarchitects.com/2009/09/20090903_bmartinez_exercise2-4-dta/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 20:41:47 +0000</pubDate>
		<dc:creator>felipe23</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Exercise 2.4]]></category>
		<category><![CDATA[Panorama]]></category>
		<category><![CDATA[Panoramic photography]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[stitching software]]></category>

		<guid isPermaLink="false">http://www.digitaltoolsforarchitects.com/?p=747</guid>
		<description><![CDATA[ [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_750" class="wp-caption alignnone" style="width: 610px"><img class="size-full wp-image-750" src="http://www.digitaltoolsforarchitects.com/wp-content/uploads/2009/09/20090903_bmartinez_Exercise-2.4_web.jpg" alt="Mathematics Building" width="600" height="187" /><p class="wp-caption-text">Mathematics Building</p></div>
<p>Exercise 2.4</p>
<p>Stitching a panoramic image with Photoshop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltoolsforarchitects.com/2009/09/20090903_bmartinez_exercise2-4-dta/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rosemary McGowan Exercise 2.4</title>
		<link>http://www.digitaltoolsforarchitects.com/2009/09/rosemary-mcgowan-exercise-2-4/</link>
		<comments>http://www.digitaltoolsforarchitects.com/2009/09/rosemary-mcgowan-exercise-2-4/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 19:41:30 +0000</pubDate>
		<dc:creator>Rosemary McGowan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Exercise 2.4]]></category>
		<category><![CDATA[Panorama]]></category>
		<category><![CDATA[Rosemary McGowan]]></category>

		<guid isPermaLink="false">http://www.digitaltoolsforarchitects.com/?p=700</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-701" src="http://www.digitaltoolsforarchitects.com/wp-content/uploads/2009/09/Untitled_Panorama12.jpg" alt="ET Entrance" width="2219" height="637" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitaltoolsforarchitects.com/2009/09/rosemary-mcgowan-exercise-2-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

