Beispiel #1
0
        public SculptMesh SculptMeshFromFile(string fileName, SculptType sculptType, int lod, bool viewerMode)
        {
            var bitmap     = (Bitmap)Image.FromFile(fileName);
            var sculptMesh = new SculptMesh(bitmap, sculptType, lod, viewerMode);

            bitmap.Dispose();
            return(sculptMesh);
        }
Beispiel #2
0
 public SculptMesh(SculptMesh sm)
 {
     coords      = new List <Coord>(sm.coords);
     faces       = new List <Face>(sm.faces);
     viewerFaces = new List <ViewerFace>(sm.viewerFaces);
     normals     = new List <Coord>(sm.normals);
     uvs         = new List <UVCoord>(sm.uvs);
 }