I have coded a 2D visualization using raphael.js but now I need to add some 3D features to this visualization. Is there a way I can use 3D libraries in my rapahel application?
Asked
Active
Viewed 847 times
1 Answers
0
As raphael objects are DOM elements, depending on where your need you 3D items, you could use three.js which can use WebGL to render on to a canvas element. Obviously you sould need to consider the stacking order because the canvas would need to be beneath your raphael content to avoid obscuring it.

Neil
- 7,861
- 4
- 53
- 74