Ejemplo n.º 1
0
        public LiveRunnerServices(EngineController controller)
        {
            this.controller = controller;
            liveRunner      = LiveRunnerFactory.CreateLiveRunner(controller);

            liveRunner.GraphUpdateReady += GraphUpdateReady;
            liveRunner.NodeValueReady   += NodeValueReady;
        }
Ejemplo n.º 2
0
 public LiveRunnerServices(EngineController controller, string geometryFactoryFileName)
 {
     liveRunner = LiveRunnerFactory.CreateLiveRunner(controller, geometryFactoryFileName);
 }
Ejemplo n.º 3
0
 public LiveRunnerServices(DynamoModel dynamoModel, EngineController controller, string geometryFactoryFileName)
 {
     this.dynamoModel = dynamoModel;
     liveRunner       = LiveRunnerFactory.CreateLiveRunner(controller, geometryFactoryFileName);
 }