event = new RotateEvent(_rotation, location, time);
break;
case ActionManagerMT.MULTI_POINT_DRAG_GESTURE:
if (locationLast != null) {
Vector3f dxy = locationLast.getVector(location);
event = new DragEvent(dxy.x, dxy.y, 2, time);
}
break;
}
if (event != null)
events.add(event);