var fDesc=new Array();
fDesc[0] = "CADtoEarth is a family of POC plugins for the most popular CAD packages, linking modeling environments with Cesium.
CADtoEarth provides a wide range of capabilities, including an ability to:
- Upload a model directly from a modeling session onto Cesium;
- Import a section of the earth’s surface directly from Cesium into a modeling session;
- Position a 3D structure on the imported surface within a modeling session and subsequently upload it back to Cesium;
- Perform the same operations on 2D objects in a modeling environment and Cesium.";
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 = '';
}
}