Example #1
0
        public override void MoveTo(Pt lastInkPt)
        {
            Vec delta = hitPt - AllStroqs.First()[0] + lastInkPt - moveStrokeStart;
            Rct r     = AllStroqs.GetBounds();

            AllStroqs.Move(delta);
        }
Example #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="inkPt">where the cursor is at the start of the move</param>
 public override void StartMove(Pt inkPt)
 {
     moveStrokeStart = inkPt;
     hitPt           = AllStroqs.First()[0];
 }