var fDesc=new Array(); fDesc[0] = "Voronoi Sketch Generator is a Fusion 360 add-on that allows you to generate Voronoi sketches by setting various parameters that will affect the generated forms. Once installed, the add-on will create a new button in the menu of the "Model" workspace's "Create" panel. When running the command, you can set the edge style, the number of cells, the pattern width, the pattern height, and more."; 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 = ''; } }