I am working on computational fluid dynamics (CFD), where mesh is the first step for any CFD analysis. You can google CFD mesh and get a basic idea of what a CFD mesh looks like.
I am considering how to render this mesh on a web browser which is traditionally only done on a local computer/workstation.
Do you have any recommendations which javascript that I can start with and adding features so to handle this problem? (I am not sure if Google chart API is a good place to start.)
Or is it possible if I have a C++ code already that can generate a mesh file (including its points faces, etc.), when it can be done on back-end, and javascripts can read this mesh file and render it on a web browser?
Any ideas?
If you are looking for 3D rendering with javascript, you can search the web for various engines such three.js.
Note that a high complex mesh can be slow to render or even impossible in some hardwares.