var fDesc=new Array(); fDesc[0] = "Mesh2Surface is a plug-in for Rhinoceros providing tools to convert your meshed scan data to complete CAD model in minutes. With a number of simple but efficient features to optimize the process of converting scanned data to a perfect CAD model.
Features:
Segment meshes based on fillet areas
Measure the fillet radius
Constraint extracted shapes
Find the symmetry of the object
Align an object to the world coordinate system
Build best fit free form surface from part of the mesh
Create curve based free form surface"; 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 = ''; } }