Canguro.Controller.Tracking.TrackingService.Reset C# (CSharp) 메소드

Reset() 공개 메소드

This method is called by the Controller to set up the Tracking service at the initial state and with the correct parameters
public Reset ( Canguro gv ) : void
gv Canguro The ActiveView as known by the GraphicViewManager
리턴 void
        public void Reset(Canguro.View.GraphicView gv)
        {
            graphicView = gv;
            reset();
        }

Usage Example

예제 #1
0
 public void Reset(Canguro.View.GraphicView activeView)
 {
     if (trackingService != null)
     {
         trackingService.Reset(activeView);
     }
     snapController.Reset(activeView);
     hoverController.Reset(activeView);
 }