Is there an opensource framework for 3d canvas?

2.1k Views Asked by At

Is there an opensource framework to allow real-time rendering of textured polygons? I want to display photo's in a 3d space. I don't need many polygons (less than 100, but the more the better, of course)

4

There are 4 best solutions below

0
On BEST ANSWER

What about Three.js ?

It's simple, open source and powerful :). (http://mrdoob.github.com/three.js/) (You can render with SVG, Canvas or WebGL)

3
On
1
On

Webkit's 3d transitions for CSS3 are hardware rendered on some browsers (Chrome, newer releases of Mobile Safari for the iOS) thus making 3d canvas animations also hardware accelerated (this is i think how Google gets it's scaling to work on the iOS).

This is not open source but it will get you 3d canvas and on certain platforms, awesome performance.

0
On

Have a look at http://processingjs.org.

Wikipedia-Quote:

Processing.js uses JavaScript to render 2D and 3D content on the HTML canvas element, and is supported by browsers that have implemented this element (the latest versions of Mozilla Firefox, Opera, Internet Explorer 9, Safari and Google Chrome).