var fDesc=new Array();
fDesc[0] = "Autodesk® Mudbox™ 3D digital sculpting and digital painting software gives you the freedom to create production-ready 3D digital artwork without worrying about the technical details. Designed by professional artists from the game, film, television, and design industries, Mudbox combines an intuitive user interface with a powerful creative toolset of stencils and brushes for ultrarealistic 3D character modeling, engaging environments, and stylized props.
This is the English 32-bit version of Autodesk Mudbox 2012
Features:
World-class 3D sculpting toolset—Fast, smooth, and accurate results.
Paint directly onto high-resolution 3D models—See results immediately.
3D layers—Experiment with design concepts and easily make revisions.
Seamless integration—Round-trip data with products in the Autodesk® Entertainment Creation Suites 2012, and enjoy enhanced compatibility with Adobe® Photoshop® software.";
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 = '';
}
}