{
COSNumber x = (COSNumber)arguments.get( 0 );
COSNumber y = (COSNumber)arguments.get( 1 );
Matrix td = new Matrix();
td.setValue( 2, 0, x.floatValue() );//.* textMatrix.getValue(0,0) );
td.setValue( 2, 1, y.floatValue() );//* textMatrix.getValue(1,1) );
//log.debug( "textLineMatrix before " + textLineMatrix );
context.setTextLineMatrix( td.multiply( context.getTextLineMatrix() ) ); //textLineMatrix.multiply( td );
//log.debug( "textLineMatrix after " + textLineMatrix );
context.setTextMatrix( context.getTextLineMatrix().copy() );
}