Ejemplo n.º 1
0
        static void Example(string[] args)
        {
            D3Shape       s = new D3Shape();
            Adapter3Dto2D a = new Adapter3Dto2D();

            Draw(a, s);
        }
Ejemplo n.º 2
0
 static void Draw(D3Painter p, D3Shape s)
 {
     p.Paint3DShape(s);
 }
Ejemplo n.º 3
0
 public void Paint3DShape(D3Shape s)
 {
     Console.WriteLine(s.ToString());
 }