var fDesc=new Array();
fDesc[0] = "Spin3D is a fast 3D-Viewer for Data-Files written in Java.
Main Features:
- Loading simple structured text-files, containing the data to be visualized
Readable File-Formats:
- Data (lrn)
- Classification (cls)
- ESOM-Weights (wts)
- Selection of three dimensions of your possible high dimensional data sets
- Intuitive Navigation with the mouse like rotation, zooming and paning
- Multiple Selection modes like rectangle, freehand and range-specific methods
- Classification of selected datatpoints with coloring
- Different Axis-Types like Tripod, Cross and Box
- Autorotation
- Focusing on specific sets datapoints
- Nearest Neighbour visualization
- Saving of data- and classification-files with coloring information";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}