As3 gesture event two touch points coordinates

Dear All,

I try to gel coordinates of two touch point of a gesture event.
I can get second touch point coordinate:

function onZoom(event:TransformGestureEvent):void
{
	trace(event.localX + " "+ event.localY);
}

How can I get first touch point coordinate?

Thanks.