Esempio n. 1
0
        void g__EventOnDetected(surfCLR.SURF surf)
        {
            MySimulationServiceState s = new MySimulationServiceState();

            s._CX = surf.GetCX();
            s._CY = surf.GetCY();
            //s._CS = surf.GetCS();

            //_mainPort.Post(new OnDetected(s));
        }
Esempio n. 2
0
        void _g__EventOnDetected2(int scale)
        {
            MySimulationServiceState s = new MySimulationServiceState();

            s._CS = scale;
            //  s._CX = 0;
            s._CY = 0;

            _mainport.Post(new Scale(s));
        }
Esempio n. 3
0
 public TurnRight(MySimulationServiceState body)
     : base(body)
 {
 }
Esempio n. 4
0
 public Scale(MySimulationServiceState body)
     : base(body)
 {
 }