<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Fun with 3D CSS and video</title>
	<atom:link href="http://ajaxian.com/archives/fun-with-3d-css-and-video/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/fun-with-3d-css-and-video</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 17 May 2012 07:43:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Ajaxerex</title>
		<link>http://ajaxian.com/archives/fun-with-3d-css-and-video/comment-page-1#comment-274103</link>
		<dc:creator>Ajaxerex</dc:creator>
		<pubDate>Tue, 23 Jun 2009 04:11:01 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6987#comment-274103</guid>
		<description>In canvas we can not manipulate objects like in SVG and canvas is already part of the fab four (firefox, safari, opera and chrome)

I propose to use canvas.getContext(&quot;SVG&quot;) to merge canvas and SVG in order to join efforts, graphics and vectors, in one common tag.

Thoughts?</description>
		<content:encoded><![CDATA[<p>In canvas we can not manipulate objects like in SVG and canvas is already part of the fab four (firefox, safari, opera and chrome)</p>
<p>I propose to use canvas.getContext(&#8220;SVG&#8221;) to merge canvas and SVG in order to join efforts, graphics and vectors, in one common tag.</p>
<p>Thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hansschmucker</title>
		<link>http://ajaxian.com/archives/fun-with-3d-css-and-video/comment-page-1#comment-274101</link>
		<dc:creator>hansschmucker</dc:creator>
		<pubDate>Mon, 22 Jun 2009 20:23:35 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6987#comment-274101</guid>
		<description>True for normal SVG, but the filters themselves are pretty fast... which is mainly the case because they&#039;re so brain dead simple. They&#039;re not very versatile, but as for raw speed, they cannot be beaten, because they are already native C.</description>
		<content:encoded><![CDATA[<p>True for normal SVG, but the filters themselves are pretty fast&#8230; which is mainly the case because they&#8217;re so brain dead simple. They&#8217;re not very versatile, but as for raw speed, they cannot be beaten, because they are already native C.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zachstronaut</title>
		<link>http://ajaxian.com/archives/fun-with-3d-css-and-video/comment-page-1#comment-274100</link>
		<dc:creator>zachstronaut</dc:creator>
		<pubDate>Mon, 22 Jun 2009 20:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6987#comment-274100</guid>
		<description>It is impressive what you can do with SVG... however, my tests have convinced me SVG needs some speed improvements.  If only browser vendors would work hardware acceleration into their implementations!

Here is a textured Wolfenstein 3D clone running at high frame rates using JS+Canvas instead of SVG:

http://www.benjoffe.com/code/demos/canvascape/textures</description>
		<content:encoded><![CDATA[<p>It is impressive what you can do with SVG&#8230; however, my tests have convinced me SVG needs some speed improvements.  If only browser vendors would work hardware acceleration into their implementations!</p>
<p>Here is a textured Wolfenstein 3D clone running at high frame rates using JS+Canvas instead of SVG:</p>
<p><a href="http://www.benjoffe.com/code/demos/canvascape/textures" rel="nofollow">http://www.benjoffe.com/code/demos/canvascape/textures</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hansschmucker</title>
		<link>http://ajaxian.com/archives/fun-with-3d-css-and-video/comment-page-1#comment-274094</link>
		<dc:creator>hansschmucker</dc:creator>
		<pubDate>Mon, 22 Jun 2009 16:11:41 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6987#comment-274094</guid>
		<description>Here&#039;s a pure SVG variant of the Mariokart filter. It does the transformation of the (large) map image using SVGTransforms, so it&#039;s a bit on the slow side, but it works:

http://www.tapper-ware.net/stable/PerspectiveWith6LinesOfXML/index.svg</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a pure SVG variant of the Mariokart filter. It does the transformation of the (large) map image using SVGTransforms, so it&#8217;s a bit on the slow side, but it works:</p>
<p><a href="http://www.tapper-ware.net/stable/PerspectiveWith6LinesOfXML/index.svg" rel="nofollow">http://www.tapper-ware.net/stable/PerspectiveWith6LinesOfXML/index.svg</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hansschmucker</title>
		<link>http://ajaxian.com/archives/fun-with-3d-css-and-video/comment-page-1#comment-274093</link>
		<dc:creator>hansschmucker</dc:creator>
		<pubDate>Mon, 22 Jun 2009 16:09:46 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6987#comment-274093</guid>
		<description>Because the filters are applied using a (for now) non-standard CSS property (&quot;filter:url(#svgFilterId)&quot;). They could also be applied using HTML&gt;iframe(SVG)&gt;filter&gt;foreignObject(Canvas) or HTML&gt;iframe(SVG)&gt;filter&gt;SVGTransform&gt;SVGImage, I was just too lazy to set it up.
But the basic system works in all browsers that support feDisplacementMap</description>
		<content:encoded><![CDATA[<p>Because the filters are applied using a (for now) non-standard CSS property (&#8220;filter:url(#svgFilterId)&#8221;). They could also be applied using HTML&gt;iframe(SVG)&gt;filter&gt;foreignObject(Canvas) or HTML&gt;iframe(SVG)&gt;filter&gt;SVGTransform&gt;SVGImage, I was just too lazy to set it up.<br />
But the basic system works in all browsers that support feDisplacementMap</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zachstronaut</title>
		<link>http://ajaxian.com/archives/fun-with-3d-css-and-video/comment-page-1#comment-274092</link>
		<dc:creator>zachstronaut</dc:creator>
		<pubDate>Mon, 22 Jun 2009 15:57:14 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6987#comment-274092</guid>
		<description>Hey, thanks for posting my demo.  Ajaxian Editors: My name is actually Zachary Johnson.  (Just my website is zachstronaut.com)

hansschmucker... those demos are incredible.  I wonder why they don&#039;t work in Webkit?</description>
		<content:encoded><![CDATA[<p>Hey, thanks for posting my demo.  Ajaxian Editors: My name is actually Zachary Johnson.  (Just my website is zachstronaut.com)</p>
<p>hansschmucker&#8230; those demos are incredible.  I wonder why they don&#8217;t work in Webkit?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hansschmucker</title>
		<link>http://ajaxian.com/archives/fun-with-3d-css-and-video/comment-page-1#comment-274090</link>
		<dc:creator>hansschmucker</dc:creator>
		<pubDate>Mon, 22 Jun 2009 13:21:55 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6987#comment-274090</guid>
		<description>Nope SVG is very much alive and kicking. It simply needs a more accessible way to integrate it into normal pages and the CSS filter property is a nice first step. Next would be an image decoder. SVG is already big as an image format, but we need better ways to combine SVG and HTML if we want it to be really popular.

PS: No, it won&#039;t work in MSIE 6, but SVG filters are something very simple and compact. It could be easily implemented via Flash as a fallback.</description>
		<content:encoded><![CDATA[<p>Nope SVG is very much alive and kicking. It simply needs a more accessible way to integrate it into normal pages and the CSS filter property is a nice first step. Next would be an image decoder. SVG is already big as an image format, but we need better ways to combine SVG and HTML if we want it to be really popular.</p>
<p>PS: No, it won&#8217;t work in MSIE 6, but SVG filters are something very simple and compact. It could be easily implemented via Flash as a fallback.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Svennedy</title>
		<link>http://ajaxian.com/archives/fun-with-3d-css-and-video/comment-page-1#comment-274089</link>
		<dc:creator>Svennedy</dc:creator>
		<pubDate>Mon, 22 Jun 2009 13:15:17 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6987#comment-274089</guid>
		<description>Want work in IE6!  &gt;;D

And: SVG is dead and buried.</description>
		<content:encoded><![CDATA[<p>Want work in IE6!  &gt;;D</p>
<p>And: SVG is dead and buried.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Svennedy</title>
		<link>http://ajaxian.com/archives/fun-with-3d-css-and-video/comment-page-1#comment-274088</link>
		<dc:creator>Svennedy</dc:creator>
		<pubDate>Mon, 22 Jun 2009 13:14:03 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6987#comment-274088</guid>
		<description>qwdqwd</description>
		<content:encoded><![CDATA[<p>qwdqwd</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hansschmucker</title>
		<link>http://ajaxian.com/archives/fun-with-3d-css-and-video/comment-page-1#comment-274087</link>
		<dc:creator>hansschmucker</dc:creator>
		<pubDate>Mon, 22 Jun 2009 13:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=6987#comment-274087</guid>
		<description>Honestly, we can do even more amazing stuff with SVG filters :) 

(these demos need Firefox 3.5 as the filter is applied via CSS filter property, but using an iframe SVG or combined XML document would work just as well)

Like texturing a prerendered animation in realtime:
http://www.tapper-ware.net/stable/web.filter.apng.dynamicTexture/index.xhtml

Or doing perspective texture mapping to play Mario Kart:
http://www.tapper-ware.net/stable/PerspectiveWith6LinesOfXML-CanvasEnhanced/index.xhtml

Or spinning a world sphere:
http://www.tapper-ware.net/stable/SVGWorld/index.xhtml

Of course you can apply such filters to anything, and yes: that includes VIDEO. Or Canvas. Or SVG. Or, well: Anything.</description>
		<content:encoded><![CDATA[<p>Honestly, we can do even more amazing stuff with SVG filters :) </p>
<p>(these demos need Firefox 3.5 as the filter is applied via CSS filter property, but using an iframe SVG or combined XML document would work just as well)</p>
<p>Like texturing a prerendered animation in realtime:<br />
<a href="http://www.tapper-ware.net/stable/web.filter.apng.dynamicTexture/index.xhtml" rel="nofollow">http://www.tapper-ware.net/stable/web.filter.apng.dynamicTexture/index.xhtml</a></p>
<p>Or doing perspective texture mapping to play Mario Kart:<br />
<a href="http://www.tapper-ware.net/stable/PerspectiveWith6LinesOfXML-CanvasEnhanced/index.xhtml" rel="nofollow">http://www.tapper-ware.net/stable/PerspectiveWith6LinesOfXML-CanvasEnhanced/index.xhtml</a></p>
<p>Or spinning a world sphere:<br />
<a href="http://www.tapper-ware.net/stable/SVGWorld/index.xhtml" rel="nofollow">http://www.tapper-ware.net/stable/SVGWorld/index.xhtml</a></p>
<p>Of course you can apply such filters to anything, and yes: that includes VIDEO. Or Canvas. Or SVG. Or, well: Anything.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

