34 lines
1.0 KiB
Java
34 lines
1.0 KiB
Java
|
package com.kofax.kmc.ken.engines;
|
||
|
|
||
|
import android.graphics.Rect;
|
||
|
import com.kofax.android.abc.machine_vision.CaptureGuidance;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
class k implements INativeGuidance {
|
||
|
private final CaptureGuidance bL;
|
||
|
|
||
|
public k(CaptureGuidance captureGuidance) {
|
||
|
this.bL = captureGuidance;
|
||
|
}
|
||
|
|
||
|
@Override // com.kofax.kmc.ken.engines.INativeGuidance
|
||
|
public double getZoomGuidance(Rect rect, double d, double d2) {
|
||
|
return this.bL.getZoomGuidance(rect, d, d2);
|
||
|
}
|
||
|
|
||
|
@Override // com.kofax.kmc.ken.engines.INativeGuidance
|
||
|
public double getTurnGuidance(double d) {
|
||
|
return this.bL.getTurnGuidance(d);
|
||
|
}
|
||
|
|
||
|
@Override // com.kofax.kmc.ken.engines.INativeGuidance
|
||
|
public double getHorizontalMovementGuidance(Rect rect, double d) {
|
||
|
return this.bL.getHorizontalMovementGuidance(rect, d);
|
||
|
}
|
||
|
|
||
|
@Override // com.kofax.kmc.ken.engines.INativeGuidance
|
||
|
public double getVerticalMovementGuidance(Rect rect, double d) {
|
||
|
return this.bL.getVerticalMovementGuidance(rect, d);
|
||
|
}
|
||
|
}
|