Esempio n. 1
0
        public static void OutputMap(BitMap3d bmp, string path)
        {
            CuberilleProcessor cp = new CuberilleProcessor(bmp);
            Mesh m = cp.GeneratorSurface();

            PlyManager.Output(m, path);
        }
Esempio n. 2
0
 public CuberilleProcessor(BitMap3d bitmap)
 {
     bmp = bitmap;
 }
Esempio n. 3
0
 public FillShape(int width, int height, int depth)
 {
     bmpMap = new BitMap3d(width, height, depth, BitMap3d.BLACK);
 }