1 | The SV2 server contains geometry and filter engines. |
2 | The main tasks of the geometry engine is to compute geometry from raw data, it can also compress data. |
3 | Features in the geometry engine are to generate volume images using ray tracing techniques, Isosurface, sample various domains in the 3d data set, etc. |
4 | The server is written in Java, but many routines (such as the ray tracing routine), are written efficiently in C. Since current API provided by these visualization system does not support Java code, we will use the Java Native Interface(JNI) to call C/C++ API's. |
5 | Filters are contained on the Server and Clients. |