Amy Robinson
Results
1
comments of
Amy Robinson
public void setScalePercentAndCenterY(float scalePercent){ float[] centerM = new float[9]; if(centerMatrix==null){ TreeViewLog.e(TAG, "no centerMatrix!!!"); return; } centerMatrix.getValues(centerM); float[] now = new float[9]; getMatrix().getValues(now); TreeViewLog.e(TAG, "setScalePercent: \n" + Arrays.toString(centerM)+"\n" + Arrays.toString(now)); centerM[Matrix.MSCALE_X]...