Exemplo n.º 1
0
        public static void Main()
        {
            //Create the initial scene and give control to the engine
            //The engine will create the core window and attach DirectX
            var engine       = new HololensEngineCore.Engine();
            var exampleScene = new ExampleScene(engine);
            var objScene     = new ObjScene(engine);

            //Start the engine
            engine.Start(objScene);
        }
Exemplo n.º 2
0
 private void InsetControl_OnRender(TimeSpan delta)
 {
     ExampleScene.Render();
 }
Exemplo n.º 3
0
 private void OpenTkControl_OnRender(TimeSpan delta)
 {
     ExampleScene.Render();
 }
 private void Control1_OnRender(TimeSpan delta)
 {
     ExampleScene.Render();
 }