Canguro.Controller.Tracking.PolygonTrackingService.SetPoint C# (CSharp) Method

SetPoint() public method

public SetPoint ( System.Vector3 vecInternational ) : void
vecInternational System.Vector3
return void
        public override void SetPoint(Vector3 vecInternational)
        {
            Vector3 vec = vecInternational;
            graphicView.Project(ref vec);

            Point pt = new Point((int)vec.X, (int)vec.Y);
            if (points.Count == 0)
                MouseMove(pt);

            points.Enqueue(vecInternational);
        }

Same methods

PolygonTrackingService::SetPoint ( System pt ) : void