Canguro.Controller.Tracking.PolygonTrackingService.SetPoint C# (CSharp) Метод

SetPoint() публичный Метод

public SetPoint ( System.Vector3 vecInternational ) : void
vecInternational System.Vector3
Результат 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