Exemplo n.º 1
0
        public static Scenegraph CreateDefault()
        {
            Scenegraph graph = new Scenegraph();
            VesselNode node = new VesselNode();

            graph.AddNode(node);
            //A Normal Scenegraph contains
            return graph;
        }
Exemplo n.º 2
0
 public virtual void PreComponentCalcuation(Scenegraph scene, SimulationTime time)
 {
     //nothing
 }
Exemplo n.º 3
0
 public virtual void PostComponentCalculation(Scenegraph scene, SimulationTime time)
 {
 }
Exemplo n.º 4
0
 public SimulationEngine(Scenegraph scene)
 {
     this.Scene = scene;
     latestDataSet = new SimulationStep();
 }
Exemplo n.º 5
0
 public override void PreComponentCalcuation(Scenegraph scene, SimulationTime deltaTime)
 {
 }