var fDesc=new Array(); fDesc[0] = "Paint3D is an innovative, easy to learn and use 3D bitmap editor that allows you to paint, draw, sculpt and create in 3D using an approach similar to 2D paint programs. Paint3D was designed to be accessible to casual users and has an intuitive interface with no need to memorize hundreds of commands or tools.

Traditional 3D modelling softwares use a mesh of triangles to represent the surface of the objects. Paint3D images are composed of a 3D grid of voxels (3D pixels), little cubes containing color (32bit true color with transparency) information just like a 2D bitmap is composed of little squares."; 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 = ''; } }