scaleCenter method
void
scaleCenter()
Implementation
void scaleCenter(int direction, int minFocal, int maxFocal, double minScale,
double maxScale, double threshold, double x, double y) {
if (appPlayerSetScale == null) return;
if (minScale < 1.0) minScale = 1.0;
if (maxScale < 1.0) maxScale = 1.0;
appPlayerSetScaleCenter(playerId, minScale, maxScale, minFocal, maxFocal,
direction, threshold, x, y);
}