示例#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));
        }
示例#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));
        }
示例#3
0
 public TurnRight(MySimulationServiceState body)
     : base(body)
 {
 }
示例#4
0
 public Scale(MySimulationServiceState body)
     : base(body)
 {
 }