Canguro.Controller.Tracking.TrackingService.Reset C# (CSharp) Method

Reset() public method

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
return void
        public void Reset(Canguro.View.GraphicView gv)
        {
            graphicView = gv;
            reset();
        }

Usage Example

Exemplo n.º 1
0
 public void Reset(Canguro.View.GraphicView activeView)
 {
     if (trackingService != null)
     {
         trackingService.Reset(activeView);
     }
     snapController.Reset(activeView);
     hoverController.Reset(activeView);
 }