コード例 #1
0
ファイル: Program.cs プロジェクト: nklinkachev/RayTracer
        static void Main(string[] args)
        {
            World world = new World();
            world.Build();
            world.Camera.RenderScene(world);

            Console.Out.WriteLine("All done.");
        }
コード例 #2
0
        static void Main(string[] args)
        {
            World world = new World();

            world.Build();
            world.Camera.RenderScene(world);

            Console.Out.WriteLine("All done.");
        }
コード例 #3
0
ファイル: Program.cs プロジェクト: DamianKow/RayTracer
        static void Main(string[] args)
        {
            World world = new World();

            Console.WriteLine("Build world");
            world.Build();
            Console.WriteLine("Render scene");
            world.camera.RenderScene(world);

            Console.ReadKey();
        }