void PointingMove (PointingEvent *e)
    {   // pointer location
        pointerLoc = Intersection (e, Loc ());

        // subtract the feld location
        vertex = pointerLoc - Loc ();

        // get the magnitude
        m = vertex.Mag();
    }