package safeluck.drive.evaluation.bean;
|
|
/**
|
* DriveJudge
|
* Created by lzw on 2020/10/26. 13:59:39
|
* 邮箱:632393724@qq.com
|
* All Rights Saved! Chongqing AnYun Tech co. LTD
|
*/
|
public class StraightLineSetting {
|
|
/**
|
* straight_limit_distance : 100
|
* straight_max_offset : 0.3
|
*/
|
|
private int straight_limit_distance;
|
private double straight_max_offset;
|
|
public int getStraight_limit_distance() {
|
return straight_limit_distance;
|
}
|
|
public void setStraight_limit_distance(int straight_limit_distance) {
|
this.straight_limit_distance = straight_limit_distance;
|
}
|
|
public double getStraight_max_offset() {
|
return straight_max_offset;
|
}
|
|
public void setStraight_max_offset(double straight_max_offset) {
|
this.straight_max_offset = straight_max_offset;
|
}
|
}
|