I want to draw a 3d ball or sphere in html 5.0 canvas. I want to understand the Algorithm about how to draw 3d sphere. Who can share this with me?
Thanks in advance !
feedback
|
|
To see some examples of doing 3D in canvas you can look at: http://www.canvasdemos.com/2009/02/26/3d-on-2d-canvas/ You will need to model a sphere, and have it be varying colors so that as it rotates you can see that it is not only a sphere, but being rendered. Otherwise, a sphere in space, with not point of reference around it looks like a circle, if it is all one solid color. To start with you will want to try drawing a circle with rectangles, as that is the main primitive you have. Once you understand how to do that, or create a new primitive, such as a triangle, using the Path method, and create a circle, then you are ready to move it to 3D. 3D is just a trick, as you will take your model, probably generated by an equation, and then flatten it, as you determine which parts will be seen, and then display it. But, you will want to change the color of the triangles based on how far they are from a source of light, as well as based on the angle of that part to the light source. This is where you can start to do optimizations, as, if you do this pixel by pixel then you are raytracing. If you have larger blocks, and a point source of light, and the object is rotating but not moving around then you can recalculate how the color changes for each triangle, then it is just a matter of changing colors to simulate rotating. The algorithm will depend on what simplifications you want to make, so as you gain experience come back and ask, showing what you have done so far. | |||||
feedback
|
|
Over ten years ago I wrote a Java applet to render a textured sphere by actually doing the math to work out where the surface of the sphere was in the scene (not using triangles). I've rewritten it in JavaScript for canvas and I've got a demo rendering the earth as a sphere:
I get around 22 fps on my machine. Which is about as fast as the Java version it was based on renders at, if not a little faster! Now it's a long time since I wrote the Java code - and it was quite obtuse - so I don't really remember exactly how it works, I've just ported it JavaScript. However this is from a slow version of the code and I'm not sure if the faster version was due to optimisations in the Java methods I used to manipulate pixels or from speedups in the math it does to work out which pixel to render from the texture. I was also corresponding at the time with someone who had a similar applet that was much faster than mine but again I don't know if any of the speed improvements they had would be possible in JavaScript as it may have relied on Java libraries. (I never saw their code so I don't know how they did it.) So it may be possible to improve on the speed. But this works well as a proof of concept. If you're interested in comparing the speed, the Java versions are here:
I'll have a go at converting my faster version some time to see if I can get any speed improvements into the JavaScript version. | |||||
feedback
|
|
You could give a look to this article I wrote to show how to draw a real 3D sphere inside a HTML5 canvas: http://www.bitstorm.it/blog/en/2011/05/draw-old-school-3d-sphere-html5/ | ||||
|
feedback
|
|
Well, an image of a sphere will always have a circular shape on your screen, so the only thing that matters is the shading. This will be determined by where you place your light source. As for algorithms, ray tracing is the simplest, but also the slowest by far — so you probably wouldn't want to use it to do anything very complicated in a | |||
feedback
|