meshGroup.registerInputProcessor(new ScaleProcessor(mtApplication));
meshGroup.addGestureListener(ScaleProcessor.class, new IGestureEventListener(){
//@Override
public boolean processGestureEvent(MTGestureEvent ge) {
ScaleEvent se = (ScaleEvent)ge;
meshGroup.scaleGlobal(se.getScaleFactorX(), se.getScaleFactorY(), se.getScaleFactorX(), biggestMesh.getCenterPointGlobal());
return false;
}
});
meshGroup.registerInputProcessor(new RotateProcessor(mtApplication));