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

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