var fDesc=new Array();
fDesc[0] = "Cubify Sculpt equips you with virtual clay to take the intimidation out of making something from nothing. Mold, modify or mash-up an original design or import and adapt an existing model with ease.
Cubify Sculpt features:
- Import: STL, OBJ, PLY, CLY to edit
- Export: STL, OBJ, PLY, CLY, ZPC
- Cubify Sculpt saves as a 3D print-ready STL.";
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 = '';
}
}