Exemplo n.º 1
0
        public void MoveLeft(double tv)
        {
            pf_UpdateMatrix(delegate(Matrix tmtr)
            {
                double ttx = tv - RxGeom.GetLeft(_rctBounds);
                double tty = 0;
                tmtr.Translate(ttx, tty);

                return(tmtr);
            });
        }
Exemplo n.º 2
0
 public double GetLeft()
 {
     return(RxGeom.GetLeft(_rctBounds));
 }