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
Example #1
0
 public void Reset(Canguro.View.GraphicView activeView)
 {
     if (trackingService != null)
     {
         trackingService.Reset(activeView);
     }
     snapController.Reset(activeView);
     hoverController.Reset(activeView);
 }