!!!Listing10

	char *TxtBuf;
	MemHandle h;

	h = MemHandleNew( 20 );
	TxtBuf = (char *) MemHandleLock( h );
	LW_DoubleToStr( TxtBuf, 10, Zenith.x );
	WinPaintChars( TxtBuf, StrLen( TxtBuf ), 30, 50 );
	LW_DoubleToStr( TxtBuf, 10, Zenith.y );
	WinPaintChars( TxtBuf, StrLen( TxtBuf ), 30, 62 );
	LW_DoubleToStr( TxtBuf, 10, Zenith.z );
	WinPaintChars( TxtBuf, StrLen( TxtBuf ), 30, 74 );
	LW_DoubleToStr( TxtBuf, 10, As );
	WinPaintChars( TxtBuf, StrLen( TxtBuf ), 30, 90 );
	MemHandleUnlock( h );
	MemHandleFree( h );
